diff --git a/harbour/ChangeLog b/harbour/ChangeLog index 167ee8ff5f..182701fcbe 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -17,6 +17,17 @@ past entries belonging to author(s): Viktor Szakats. */ +2009-06-11 17:14 UTC+0200 Viktor Szakats (harbour.01 syenar.hu) + * utils/hbmk2/hbmk2.prg + ! Fixed C++ support for dos/djgpp. exe name was wrong. + + * examples/superlib/readme.txt + * examples/dbu/readme.txt + * examples/rl/readme.txt + + Added hbformat command to intructions how to convert + original sources to patchable format (EOL + lowercase). + Many thanks to Alexander Kresin. + 2009-06-11 19:10 UTC+0300 Alexander Kresin * utils/hbformat/hbformat.prg * utils/hbformat/hbformat.ini diff --git a/harbour/examples/dbu/readme.txt b/harbour/examples/dbu/readme.txt index 3fa1060a12..4416809a40 100644 --- a/harbour/examples/dbu/readme.txt +++ b/harbour/examples/dbu/readme.txt @@ -6,7 +6,8 @@ CA-Cl*pper installation. 2.) *nix users will need convert original filenames to lowercase - and EOLs to native format (f.e. with dos2unix). + and EOLs to native format, using this command: + hbformat -lFCaseLow=yes -nEol=0 -lIndent=no -lCase=no -lSpace=no *.prg 3.) Apply supplied patch to the source using GNU Patch: diff --git a/harbour/examples/rl/readme.txt b/harbour/examples/rl/readme.txt index f8cddb51f0..2842503ed7 100644 --- a/harbour/examples/rl/readme.txt +++ b/harbour/examples/rl/readme.txt @@ -6,7 +6,8 @@ CA-Cl*pper installation. 2.) *nix users will need convert original filenames to lowercase - and EOLs to native format (f.e. with dos2unix). + and EOLs to native format, using this command: + hbformat -lFCaseLow=yes -nEol=0 -lIndent=no -lCase=no -lSpace=no *.prg 3.) Apply supplied patch to the source using GNU Patch: patch -N -i rl.dif diff --git a/harbour/examples/superlib/readme.txt b/harbour/examples/superlib/readme.txt index c0ac3fc005..9504a2e78f 100644 --- a/harbour/examples/superlib/readme.txt +++ b/harbour/examples/superlib/readme.txt @@ -8,7 +8,8 @@ 2.) Unzip SOURCE.ZIP to this directory. 3.) *nix users will need convert original filenames to lowercase - and EOLs to native format (f.e. with dos2unix). + and EOLs to native format, using this command: + hbformat -lFCaseLow=yes -nEol=0 -lIndent=no -lCase=no -lSpace=no *.prg 4.) Apply supplied patch to the source using GNU Patch: patch -N -i hbsuper.dif diff --git a/harbour/utils/hbmk2/hbmk2.prg b/harbour/utils/hbmk2/hbmk2.prg index ba43e2829d..a7f9dc79b2 100644 --- a/harbour/utils/hbmk2/hbmk2.prg +++ b/harbour/utils/hbmk2/hbmk2.prg @@ -2250,7 +2250,7 @@ FUNCTION hbmk( aArgs, /* @ */ lPause, /* @ */ lUTF8 ) cLibPrefix := "-l" cLibExt := "" cObjExt := ".o" - cBin_CompC := iif( s_lCPP != NIL .AND. s_lCPP, "gxx.exe", "gcc.exe" ) + cBin_CompC := iif( s_lCPP != NIL .AND. s_lCPP, "gpp.exe", "gcc.exe" ) cOpt_CompC := "-c" IF hbmk[ _HBMK_lOPTIM ] cOpt_CompC += " -O3"