From cd96854d122eebc09da2ce99a092e379d3d3e6bb Mon Sep 17 00:00:00 2001 From: Viktor Szakats Date: Mon, 28 Jun 2010 08:58:35 +0000 Subject: [PATCH] 2010-06-28 10:58 UTC+0200 Viktor Szakats (harbour.01 syenar.hu) * config/win/msvc.mk ! Fixed HB_BUILD_SHARED=yes mode for msvc. --- harbour/ChangeLog | 4 ++++ harbour/config/win/msvc.mk | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/harbour/ChangeLog b/harbour/ChangeLog index c585c25a2f..2d2624eaa8 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -16,6 +16,10 @@ The license applies to all entries newer than 2009-04-28. */ +2010-06-28 10:58 UTC+0200 Viktor Szakats (harbour.01 syenar.hu) + * config/win/msvc.mk + ! Fixed HB_BUILD_SHARED=yes mode for msvc. + 2010-06-28 10:45 UTC+0200 Viktor Szakats (harbour.01 syenar.hu) * external/patchup.prg * Changed gtcgi force option to be the more portable-style one. diff --git a/harbour/config/win/msvc.mk b/harbour/config/win/msvc.mk index 0a5f0b3ec1..a23861e8c4 100644 --- a/harbour/config/win/msvc.mk +++ b/harbour/config/win/msvc.mk @@ -80,7 +80,7 @@ LD_OUT := -out: LIBPATHS := -libpath:$(LIB_DIR) LDLIBS := $(foreach lib,$(HB_USER_LIBS) $(LIBS) $(SYSLIBS),$(lib)$(LIB_EXT)) -LDFLAGS += -nologo $(LIBPATHS) +LDFLAGS += -nologo -subsystem:console $(LIBPATHS) AR := lib.exe AR_RULE = $(AR) $(ARFLAGS) $(HB_AFLAGS) $(HB_USER_AFLAGS) -nologo -out:$(LIB_DIR)/$@ $(^F)