diff --git a/harbour/ChangeLog b/harbour/ChangeLog index 96e8a46717..9b5ce0bd8a 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -17,6 +17,15 @@ past entries belonging to author(s): Viktor Szakats. */ +2009-08-19 06:16 UTC+0200 Viktor Szakats (harbour.01 syenar.hu) + * utils/hbmk2/hbmk2.prg + + Added wininet syslib to std lib list for win platform. + (to be in sync with wce and hbmk script). + + * INSTALL + * Using 'platform' in a few places where 'architecture' was used + in text. + 2009-08-19 04:42 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl) * harbour/include/hbgtinfo.ch * formatting diff --git a/harbour/INSTALL b/harbour/INSTALL index da0e2fab74..5ba42784cf 100644 --- a/harbour/INSTALL +++ b/harbour/INSTALL @@ -288,7 +288,7 @@ OPTIONS AVAILABLE WHEN BUILDING HARBOUR General ------- - HB_COMPILER Override C compiler autodetection - - HB_ARCHITECTURE Override architecture autodetection + - HB_ARCHITECTURE Override platform autodetection See this secion for possible values: SUPPORTED C COMPILERS UNDER DIFFERENT PLATFORMS @@ -308,7 +308,7 @@ OPTIONS AVAILABLE WHEN BUILDING HARBOUR ------- - HB_BUILD_NAME= Create named build. This allows to keep multiple builds in parallel for any given - architecture/compiler. F.e. debug / release. + platform/compiler. F.e. debug / release. NOTE: In current implementation it's appended to compiler directory name, so all filesystem/platform name rules and limits diff --git a/harbour/utils/hbmk2/hbmk2.prg b/harbour/utils/hbmk2/hbmk2.prg index eece83277d..0993890ad7 100644 --- a/harbour/utils/hbmk2/hbmk2.prg +++ b/harbour/utils/hbmk2/hbmk2.prg @@ -920,7 +920,7 @@ FUNCTION hbmk( aArgs, /* @ */ lPause, /* @ */ lUTF8 ) cOptPrefix := "-/" /* NOTE: Some targets (watcom, pocc/xcc) need kernel32 explicitly. */ l_aLIBSYSCORE := { "kernel32", "user32", "gdi32", "advapi32", "ws2_32" } - l_aLIBSYSMISC := { "winspool", "comctl32", "comdlg32", "shell32", "ole32", "oleaut32", "uuid", "mpr", "winmm", "mapi32", "imm32", "msimg32" } + l_aLIBSYSMISC := { "winspool", "comctl32", "comdlg32", "shell32", "uuid", "ole32", "oleaut32", "mpr", "winmm", "mapi32", "imm32", "msimg32", "wininet" } CASE hbmk[ _HBMK_cARCH ] == "wce" aCOMPDET := { { {|| FindInPath( hbmk[ _HBMK_cCCPREFIX ] + "gcc" ) }, "mingwarm" },; { {|| FindInPath( "cl" ) }, "msvcarm" },;