2012-03-31 18:55 UTC+0200 Viktor Szakats (harbour syenar.net)

* config/win/global.mk
  * Makefile
    ! fixed to find unicows libs when HB_BUILD_NAME is set
This commit is contained in:
Viktor Szakats
2012-03-31 16:55:57 +00:00
parent 47776af691
commit 275c97662a
3 changed files with 9 additions and 4 deletions

View File

@@ -16,6 +16,11 @@
The license applies to all entries newer than 2009-04-28.
*/
2012-03-31 18:55 UTC+0200 Viktor Szakats (harbour syenar.net)
* config/win/global.mk
* Makefile
! fixed to find unicows libs when HB_BUILD_NAME is set
2012-03-31 18:42 UTC+0200 Viktor Szakats (harbour syenar.net)
* utils/hbmk2/hbmk2.prg
+ will now add lib/3rd dir to the link commands, so

View File

@@ -8,8 +8,8 @@ include $(ROOT)config/global.mk
DIRS :=
ifneq ($(wildcard lib/3rd/$(PLAT_COMP)),)
DIRS += lib/3rd/$(PLAT_COMP)
ifneq ($(wildcard lib/3rd/$(HB_PLATFORM)/$(HB_COMPILER)),)
DIRS += lib/3rd/$(HB_PLATFORM)/$(HB_COMPILER)
endif
ifeq ($(HB_BUILD_PARTS),compiler)

View File

@@ -18,8 +18,8 @@ HB_GT_LIBS += gtwvt gtgui gtwin
# gdi32: gtwvt
# unicows lib must come after user libs and before Windows system libs
ifneq ($(wildcard $(TOP)$(ROOT)lib/3rd/$(PLAT_COMP)),)
SYSLIBPATHS += $(TOP)$(ROOT)lib/3rd/$(PLAT_COMP)
ifneq ($(wildcard $(TOP)$(ROOT)lib/3rd/$(HB_PLATFORM)/$(HB_COMPILER)),)
SYSLIBPATHS += $(TOP)$(ROOT)lib/3rd/$(HB_PLATFORM)/$(HB_COMPILER)
SYSLIBS += unicows
endif