From 08b7af7f058dd4c67d331a3b6f67a9e3705b34ed Mon Sep 17 00:00:00 2001 From: Viktor Szakats Date: Mon, 25 May 2009 10:30:46 +0000 Subject: [PATCH] 2009-05-25 12:30 UTC+0200 Viktor Szakats (harbour.01 syenar hu) * make_gnu.bat % Fixed to exclude external libs from dll phase of build. This will make the process a bit faster. --- harbour/ChangeLog | 5 +++++ harbour/make_gnu.bat | 8 ++++++++ 2 files changed, 13 insertions(+) diff --git a/harbour/ChangeLog b/harbour/ChangeLog index 834b570f7a..8a6a7a696b 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -17,6 +17,11 @@ past entries belonging to these authors: Viktor Szakats. */ +2009-05-25 12:30 UTC+0200 Viktor Szakats (harbour.01 syenar hu) + * make_gnu.bat + % Fixed to exclude external libs from dll phase of build. + This will make the process a bit faster. + 2009-05-25 10:30 UTC+0300 Alexander Kresin * utils/hbformat/hbformat.prg ! Fixed SetOption() method. diff --git a/harbour/make_gnu.bat b/harbour/make_gnu.bat index 4055291839..d49dffc028 100644 --- a/harbour/make_gnu.bat +++ b/harbour/make_gnu.bat @@ -124,15 +124,23 @@ if not exist %HB_DOC_INSTALL%\*.* md %HB_DOC_INSTALL% set _HB_CONTRIBLIBS=%HB_CONTRIBLIBS% set _HB_CONTRIB_ADDONS=%HB_CONTRIB_ADDONS% + set _HB_EXTERNALLIBS=%HB_EXTERNALLIBS% + set _HB_EXTERNAL_ADDONS=%HB_EXTERNAL_ADDONS% set HB_DYNLIB=yes set HB_CONTRIBLIBS=no set HB_CONTRIB_ADDONS= + set HB_EXTERNALLIBS=no + set HB_EXTERNAL_ADDONS= %_HB_MAKE% clean install %HB_USER_MAKEFLAGS% %1 %2 %3 %4 %5 %6 %7 %8 %9 set HB_DYNLIB=no set HB_CONTRIBLIBS=%_HB_CONTRIBLIBS% set HB_CONTRIB_ADDONS=%_HB_CONTRIB_ADDONS% + set HB_EXTERNALLIBS=%_HB_EXTERNALLIBS% + set HB_EXTERNAL_ADDONS=%_HB_EXTERNAL_ADDONS% set _HB_CONTRIBLIBS= set _HB_CONTRIB_ADDONS= + set _HB_EXTERNALLIBS= + set _HB_EXTERNAL_ADDONS= %_HB_MAKE% clean install %HB_USER_MAKEFLAGS% %1 %2 %3 %4 %5 %6 %7 %8 %9 goto MAKE_DONE