diff --git a/harbour/ChangeLog b/harbour/ChangeLog index 679a2cc9be..b702c22127 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -8,6 +8,15 @@ 2009-12-31 13:59 UTC+0100 Foo Bar (foo.bar foobar.org) */ +2009-04-02 16:30 UTC+0200 Viktor Szakats (harbour.01 syenar hu) + * INSTALL + + Made clear that Windows examples are all pure .bat scripts. + + Made clear that HB_BUILD_IMPLIB isn't supported for MinGW targets. + (and in most cases either not needed or not possible automatically) + + * contrib/hbct/ctstrfil.c + ! Fixed missing #include which could cause unresolved externals. + 2009-04-02 15:25 UTC+0200 Viktor Szakats (harbour.01 syenar hu) * utils/hbmk2/hbmk2.prg + Added support for pocc64, poccce. diff --git a/harbour/INSTALL b/harbour/INSTALL index 0b7ebb18c1..d7f27fab7f 100644 --- a/harbour/INSTALL +++ b/harbour/INSTALL @@ -286,7 +286,8 @@ EXAMPLES Windows/Windows CE ------------------ - NOTES: - Naturally, you'll need to adapt dirs to valid ones on your system. + NOTES: - All above code should be copied to .bat files. + - Naturally, you'll need to adapt dirs to valid ones on your system. Don't use space in dirs. - '%1 %2' can be empty, 'clean', 'install' or 'clean install' depending on what you want to do. @@ -500,7 +501,8 @@ EXAMPLES --8<-- rem ; Add these _before_ above sample scripts to configure 3rd party dependencies - rem for implib generation. This is needed for non-gcc compilers. + rem for implib generation. This is needed for non-GCC compilers and isn't + rem supported for GCC ones. set HB_DIR_ADS=C:\ads\acesdk set HB_DIR_ALLEGRO=C:\allegro set HB_DIR_APOLLO=C:\Apollo diff --git a/harbour/contrib/hbct/ctstrfil.c b/harbour/contrib/hbct/ctstrfil.c index 1ed307d913..1282c14680 100644 --- a/harbour/contrib/hbct/ctstrfil.c +++ b/harbour/contrib/hbct/ctstrfil.c @@ -7,7 +7,7 @@ * Functions: * SETFCREATE(), CSETSAFETY(), STRFILE(), FILESTR(), SCREENFILE() * SCREENFILE(), FILESCREEN() - * + * * Copyright 2004 Pavel Tsarenko * www - http://www.xharbour.org * @@ -56,6 +56,7 @@ #include "hbapifs.h" #include "hbapigt.h" +#include "ctstrfil.h" static int s_iFileAttr = HB_FA_NORMAL; static BOOL s_bSafety = 0;