diff --git a/harbour/ChangeLog b/harbour/ChangeLog index b37e4fe4e7..c86179063e 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -8,6 +8,14 @@ 2009-12-31 13:59 UTC+0100 Foo Bar (foo.bar foobar.org) */ +2009-03-04 08:56 UTC+0100 Viktor Szakats (harbour.01 syenar hu) + * INSTALL + + Added few NOTEs on HB_INC_* usage. + * Other minor clarifications and cleanups. + + * mpkg_win.bat + ! Forces import lib generation off. + 2009-03-04 08:28 UTC+0100 Viktor Szakats (harbour.01 syenar hu) * mpkg_win.bat + Added cygwin support. diff --git a/harbour/INSTALL b/harbour/INSTALL index 719b8bf431..5c412c73dd 100644 --- a/harbour/INSTALL +++ b/harbour/INSTALL @@ -62,9 +62,9 @@ HOW TO BUILD AND INSTALL HARBOUR > hello You should see 'Hello world!' on screen. - NOTE: should use Cygwin drive notation: /cygdrive/c/ + NOTE: should use Cygwin drive notation: /cygdrive/c for C: - Windows with other compilers + Windows with other compilers (MSVC, Watcom, Borland, Pelles, etc.) ---------------------------- Platform specific prerequisites: @@ -86,7 +86,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= > set HB_INSTALL_PREFIX= > make_gnu.bat install @@ -150,6 +150,10 @@ HOW TO ENABLE OPTIONAL COMPONENTS BEFORE BUILD HB_INC_OPENSSL=C:\openssl\inc32 HB_INC_PGSQL=C:\pgsql\include + NOTES: - For mingw and cygwin you have to use forward slashes + and also cygwin drive notation for cygwin. + - Space in dirnames isn't currently supported. + SUPPORTED C COMPILERS UNDER DIFFERENT PLATFORMS =============================================== diff --git a/harbour/mpkg_win.bat b/harbour/mpkg_win.bat index 01defba020..452b88ed3c 100644 --- a/harbour/mpkg_win.bat +++ b/harbour/mpkg_win.bat @@ -44,6 +44,7 @@ if exist %HB_INSTALL_BASE% rmdir /q /s %HB_INSTALL_BASE% rem ; Build if "%HB_COMPILER%" == "mingw" ( sh make_gnu.sh clean install && goto MK_PKG ) if "%HB_COMPILER%" == "cygwin" ( sh make_gnu.sh clean install && goto MK_PKG ) +set HB_DIR_IMPLIB=no set HB_BUILD_DLL=yes call make_gnu.bat