From ce6d06f45c7e33774ae3c94c06a5a2c41ec12761 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Przemys=C5=82aw=20Czerpak?= Date: Mon, 14 Dec 2015 14:52:37 +0100 Subject: [PATCH] 2015-12-14 14:52 UTC+0100 Przemyslaw Czerpak (druzus/at/poczta.onet.pl) * src/dynlib/Makefile ! yet another fix for building harbour without MT support HB_MT=no --- ChangeLog.txt | 4 ++++ src/dynlib/Makefile | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/ChangeLog.txt b/ChangeLog.txt index d8ad2ff4a7..b313d13922 100644 --- a/ChangeLog.txt +++ b/ChangeLog.txt @@ -10,6 +10,10 @@ * Change, ! Fix, % Optimization, + Addition, - Removal, ; Comment */ +2015-12-14 14:52 UTC+0100 Przemyslaw Czerpak (druzus/at/poczta.onet.pl) + * src/dynlib/Makefile + ! yet another fix for building harbour without MT support HB_MT=no + 2015-12-14 14:34 UTC+0100 Przemyslaw Czerpak (druzus/at/poczta.onet.pl) * src/rtl/hbproces.c + protect DosExecPgm() and standard file IO redirection in OS2 builds diff --git a/src/dynlib/Makefile b/src/dynlib/Makefile index 71379f069f..caeafd746b 100644 --- a/src/dynlib/Makefile +++ b/src/dynlib/Makefile @@ -4,6 +4,10 @@ include $(TOP)$(ROOT)config/global.mk ifneq ($(DYNDIRLIST_BASE),) + ifeq ($(HB_MT),no) + __HB_BUILD_DYN_ST := yes + endif + ifeq ($(__HB_BUILD_DYN_ST),yes) DYNDIRLIST := $(DYNDIRLIST_BASE) src/vm else