2010-06-10 02:02 UTC+0200 Viktor Szakats (harbour.01 syenar.hu)

* config/global.mk
    ! Attempt to fix rare case when Windows cross-build on Linux
      platform wrongly changed HB_BUILD_SHARED mode on. IOW now
      automatic HB_BUILD_SHARED defaulting logic (based on install
      location) only kicks in if the target platform is *nix.
      Tamas could you please retest it?
This commit is contained in:
Viktor Szakats
2010-06-10 00:04:20 +00:00
parent fc8b32088e
commit 70d4cc71ee
2 changed files with 12 additions and 2 deletions

View File

@@ -16,6 +16,13 @@
The license applies to all entries newer than 2009-04-28.
*/
2010-06-10 02:02 UTC+0200 Viktor Szakats (harbour.01 syenar.hu)
* config/global.mk
! Attempt to fix rare case when Windows cross-build on Linux
platform wrongly changed HB_BUILD_SHARED mode on. IOW now
automatic HB_BUILD_SHARED defaulting logic (based on install
location) only kicks in if the target platform is *nix.
Tamas could you please retest it?
2010-06-10 01:02 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl)
* harbour/src/rtl/hbcom.c
@@ -29,6 +36,7 @@
Thanks to Vitomir Cvitanovic for CA-VO tests.
Warning! After any modifications in such files Harbour DBF* RDDs
will correct above signatures to standard DBASE ones (0x03 and 0x83).
2010-06-10 00:03 UTC+0200 Viktor Szakats (harbour.01 syenar.hu)
* examples/uhttpd2/umain.prg
* examples/uhttpd2/uhttpd2.hbp

View File

@@ -1317,8 +1317,10 @@ export HB_SYSLOC
ifneq ($(HB_INSTALL_PREFIX),)
ifeq ($(HB_BUILD_SHARED),)
ifeq ($(HB_SYSLOC),yes)
export HB_BUILD_SHARED := yes
ifneq ($(HB_PLATFORM_UNIX),)
ifeq ($(HB_SYSLOC),yes)
export HB_BUILD_SHARED := yes
endif
endif
endif