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.
This commit is contained in:
@@ -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 <alex at belacy.belgorod.su>
|
||||
* utils/hbformat/hbformat.prg
|
||||
* utils/hbformat/hbformat.ini
|
||||
|
||||
@@ -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:
|
||||
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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"
|
||||
|
||||
Reference in New Issue
Block a user