diff --git a/harbour/ChangeLog b/harbour/ChangeLog index 2d4f8c585d..17fbbd188b 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -8,6 +8,16 @@ 2009-12-31 13:59 UTC+0100 Foo Bar (foo.bar foobar.org) */ +2009-03-02 08:30 UTC+0100 Viktor Szakats (harbour.01 syenar hu) + * INSTALL + * Updates. + + * source/vm/Makefile + - Removed sensing HB_MT value and building pure MT version + of Harbour. This is to avoid yet another unnecessary + variation of Harbour builds. For MT, just simply hbvmmt lib + should be linked. + 2009-03-01 23:56 UTC+0100 Viktor Szakats (harbour.01 syenar hu) + contrib/xhb/regexrpl.prg + Added HB_REGEXREPLACE() from xhb. Work of Francesco. diff --git a/harbour/INSTALL b/harbour/INSTALL index 6a6a67a4aa..95b340791b 100644 --- a/harbour/INSTALL +++ b/harbour/INSTALL @@ -57,11 +57,9 @@ HOW TO BUILD AND INSTALL HARBOUR 1.) Windows NT or compatible system is required to build Harbour. 2.) Make sure to have your C compiler of choice properly installed. For the list of supported compilers, please look up the - relevant section in this file. + relevant section of this file. 3.) Make sure to have GNU Make. We recommend the one distributed - with MinGW. To get it: - - Use your search engine with 'mingw gnu make' - - Use this link: + with MinGW. Use this link to get it: http://sourceforge.net/project/showfiles.php?group_id=2435 If you have it, you have three choices: - Put mingw32-make.exe anywhere in your PATH. (recommended) @@ -69,7 +67,7 @@ HOW TO BUILD AND INSTALL HARBOUR - Rename mingw32-make.exe to make.exe and put it in your PATH _before_ your compiler tools. - > set HB_COMPILER= + > set HB_COMPILER=<[msvc]|bcc|owatcom|...> > set HB_INSTALL_PREFIX= > make_gnu.bat install diff --git a/harbour/source/vm/Makefile b/harbour/source/vm/Makefile index f6dc5c1a4b..2b2627de92 100644 --- a/harbour/source/vm/Makefile +++ b/harbour/source/vm/Makefile @@ -86,15 +86,10 @@ LIBNAME=hbvm DIRS+= fm -ifeq ($(HB_MT),) - HB_MT=MT - HB_USER_CFLAGS:=$(subst -DHB_MT_VM,,$(HB_USER_CFLAGS)) -endif -ifeq ($(HB_MT),MT) +HB_USER_CFLAGS:=$(subst -DHB_MT_VM,,$(HB_USER_CFLAGS)) ifneq ($(HB_ARCHITECTURE),dos) DIRS+= vmmt fmmt endif -endif include $(TOP)$(ROOT)config/lib.cf ifneq ($(DIRS),)