From b0190e34a0a940bf3202bd7b712a64122df17c5c Mon Sep 17 00:00:00 2001 From: Viktor Szakats Date: Thu, 18 Sep 2008 12:02:27 +0000 Subject: [PATCH] 2008-09-18 14:00 UTC+0200 Viktor Szakats (harbour.01 syenar hu) * make_vc.mak * Synced with BCC to build in ST mode by default. ; TOFIX: There seems to be an old problem where contrib .prg files won't get rebuilt after a modification by running make_vc.bat (MSVC only). Marek, if you see this, could you take a look at it? --- harbour/ChangeLog | 9 +++++++++ harbour/make_vc.mak | 7 +++++-- 2 files changed, 14 insertions(+), 2 deletions(-) diff --git a/harbour/ChangeLog b/harbour/ChangeLog index 58fe6c6fdc..afaf9f83d2 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -8,6 +8,15 @@ 2008-12-31 13:59 UTC+0100 Foo Bar (foo.bar foobar.org) */ +2008-09-18 14:00 UTC+0200 Viktor Szakats (harbour.01 syenar hu) + * make_vc.mak + * Synced with BCC to build in ST mode by default. + + ; TOFIX: There seems to be an old problem where contrib + .prg files won't get rebuilt after a modification + by running make_vc.bat (MSVC only). + Marek, if you see this, could you take a look at it? + 2008-09-18 11:48 UTC+0200 Viktor Szakats (harbour.01 syenar hu) * contrib/hbmisc/fileread.prg * Changed to use natic CLASS syntax. diff --git a/harbour/make_vc.mak b/harbour/make_vc.mak index a0d26acb23..21664820b5 100644 --- a/harbour/make_vc.mak +++ b/harbour/make_vc.mak @@ -74,6 +74,11 @@ HB_GT_DEFAULT = wvt !endif !endif +# MSVC has ST mode as default +!if "$(HB_BUILD_ST)" == "" +HB_BUILD_ST = yes +!endif + #********************************************************** # Visual C++ version @@ -139,8 +144,6 @@ HB_BUILD_MODE = C # C Compiler Flags !if "$(HB_BUILD_WINCE)" == "yes" -HB_BUILD_ST = yes - !if $(HB_VISUALC_VER) >= 80 CFLAGS_VER = -Od -Os -Gy -GS- -EHsc- -fp:fast -Gm -Zi -GR- -D_CRT_SECURE_NO_DEPRECATE !else