2011-04-20 00:23 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl)

* harbour/config/linux/libs.mk
  * harbour/config/android/libs.mk
    * filter out libraries which does not exists in android inside
      android not linux config files
This commit is contained in:
Przemyslaw Czerpak
2011-04-19 22:23:34 +00:00
parent 103a5d9761
commit 5941e4f0bb
3 changed files with 12 additions and 7 deletions

View File

@@ -16,6 +16,12 @@
The license applies to all entries newer than 2009-04-28.
*/
2011-04-20 00:23 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl)
* harbour/config/linux/libs.mk
* harbour/config/android/libs.mk
* filter out libraries which does not exists in android inside
android not linux config files
2011-04-19 21:15 UTC+0200 Viktor Szakats (harbour.01 syenar.hu)
* contrib/hbqt/hbqt_common.hbc
! do not satisfy the HBQT dependency when HB_BUILD_3RDEXT=no.

View File

@@ -3,3 +3,5 @@
#
include $(TOP)$(ROOT)config/linux/libs.mk
SYSLIBS := $(filter-out rt pthread, $(SYSLIBS))

View File

@@ -33,13 +33,10 @@ ifneq ($(HB_LINKING_RTL),)
ifeq ($(HB_HAS_ZLIB_LOCAL),)
SYSLIBS += z
endif
SYSLIBS += dl
ifneq ($(HB_PLATFORM),android)
SYSLIBS += rt
# Don't seem to be needed here, but added it for reference to move/copy it to *nix platforms where this is required
ifneq ($(HB_LINKING_VMMT),)
SYSLIBS += pthread
endif
SYSLIBS += rt dl
# Don't seem to be needed here, but added it for reference to move/copy it to *nix platforms where this is required
ifneq ($(HB_LINKING_VMMT),)
SYSLIBS += pthread
endif
endif