From bc6f0bce7dfa1ae42b48e13bc9104f71bafd6791 Mon Sep 17 00:00:00 2001 From: Viktor Szakats Date: Wed, 25 Mar 2009 14:55:55 +0000 Subject: [PATCH] 2009-03-25 15:55 UTC+0100 Viktor Szakats (harbour.01 syenar hu) * external/Makefile + Added HB_EXTERNAL_ADDON envvar support. * config/win/bcc.cf * -d moved to optimization switches. --- harbour/ChangeLog | 7 +++++++ harbour/config/win/bcc.cf | 4 ++-- harbour/external/Makefile | 2 ++ 3 files changed, 11 insertions(+), 2 deletions(-) diff --git a/harbour/ChangeLog b/harbour/ChangeLog index 961ef757c8..81ab7af9fe 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -8,6 +8,13 @@ 2009-12-31 13:59 UTC+0100 Foo Bar (foo.bar foobar.org) */ +2009-03-25 15:55 UTC+0100 Viktor Szakats (harbour.01 syenar hu) + * external/Makefile + + Added HB_EXTERNAL_ADDON envvar support. + + * config/win/bcc.cf + * -d moved to optimization switches. + 2009-03-25 14:35 UTC+0100 Viktor Szakats (harbour.01 syenar hu) + external/Makefile + Added missing file. diff --git a/harbour/config/win/bcc.cf b/harbour/config/win/bcc.cf index 1f26a152db..a7ce8dc09f 100644 --- a/harbour/config/win/bcc.cf +++ b/harbour/config/win/bcc.cf @@ -16,10 +16,10 @@ CC = bcc32.exe CC_IN = -c CC_OUT = -o CPPFLAGS = -I. -I$(HB_INC_COMPILE) -CFLAGS = -q -d -Q -w -w-sig- -tWM +CFLAGS = -q -Q -w -w-sig- -tWM ifneq ($(HB_BUILD_OPTIM),no) -CFLAGS += -4 -O2 -OS -Ov -Oi -Oc +CFLAGS += -d -4 -O2 -OS -Ov -Oi -Oc endif ifeq ($(HB_BUILD_DEBUG),yes) diff --git a/harbour/external/Makefile b/harbour/external/Makefile index 630d399961..4e54641b1c 100644 --- a/harbour/external/Makefile +++ b/harbour/external/Makefile @@ -18,4 +18,6 @@ endif endif +DIRS += $(HB_EXTERNAL_ADDONS) + include $(ROOT)config/dir.cf