2010-03-15 21:54 UTC+0100 Viktor Szakats (harbour.01 syenar.hu)

* INSTALL
  * external/Makefile
    - Deleted "HB_EXTERNALLIBS=no" option. Blindly disabling
      all external libs can break the build process.
This commit is contained in:
Viktor Szakats
2010-03-15 20:58:45 +00:00
parent 4bbd974426
commit 5f0aba0845
3 changed files with 8 additions and 4 deletions

View File

@@ -17,6 +17,12 @@
past entries belonging to author(s): Viktor Szakats.
*/
2010-03-15 21:54 UTC+0100 Viktor Szakats (harbour.01 syenar.hu)
* INSTALL
* external/Makefile
- Deleted "HB_EXTERNALLIBS=no" option. Blindly disabling
all external libs can break the build process.
2010-03-15 21:40 UTC+0100 Przemyslaw Czerpak (druzus/at/priv.onet.pl)
* harbour/include/hbthread.h
! added workaround for problems with static __thread variables in

View File

@@ -634,7 +634,7 @@ HARBOUR
libraries. Build all if left empty (default).
- HB_CONTRIB_ADDONS=<list> Build space separated <list> of additional
libraries stored in the contrib directory.
- HB_EXTERNALLIBS=no [<list>] Don't build any (or space separated <list> of)
- HB_EXTERNALLIBS=no <list> Don't build space separated <list> of
external libraries.
- HB_EXTERNALLIBS=[<list>] Build space separated <list> of external
libraries. Build all if left empty (default).

View File

@@ -14,9 +14,7 @@ DIRS := \
pcre \
zlib \
ifeq ($(HB_EXTERNALLIBS),no)
DIRS :=
else ifeq ($(firstword $(HB_EXTERNALLIBS)),no)
ifeq ($(firstword $(HB_EXTERNALLIBS)),no)
DIRS := $(filter-out $(HB_EXTERNALLIBS),$(DIRS))
else ifneq ($(HB_EXTERNALLIBS),)
DIRS := $(HB_EXTERNALLIBS)