2012-10-05 03:01 UTC+0200 Viktor Szakats (harbour syenar.net)

* contrib/hbformat/hbfmtcls.prg
    + added TOFIX

  * INSTALL
    + added http://sourceforge.net/projects/mingwbuilds/ as 
      recommended source for mingw builds (both 32 and 64 bit)
      Be aware that these are not QT-compatible (as of now), 
      but they seem to be much faster at compile time.

  * tests/tscmdarg.c
    * formatting
This commit is contained in:
Viktor Szakats
2012-10-05 01:03:41 +00:00
parent 4b69cde522
commit 06f0b235dd
4 changed files with 24 additions and 9 deletions

View File

@@ -16,6 +16,19 @@
The license applies to all entries newer than 2009-04-28.
*/
2012-10-05 03:01 UTC+0200 Viktor Szakats (harbour syenar.net)
* contrib/hbformat/hbfmtcls.prg
+ added TOFIX
* INSTALL
+ added http://sourceforge.net/projects/mingwbuilds/ as
recommended source for mingw builds (both 32 and 64 bit)
Be aware that these are not QT-compatible (as of now),
but they seem to be much faster at compile time.
* tests/tscmdarg.c
* formatting
2012-10-05 02:40 UTC+0200 Viktor Szakats (harbour syenar.net)
* contrib/gtwvg/*.prg
* formatted using hbformat, critical manual fixups

View File

@@ -1576,7 +1576,8 @@ HARBOUR
C/C++ Compilers/Shells:
MinGW/MinGW-64 [win, *nix, free, open-source]
http://tdm-gcc.tdragon.net/, http://sourceforge.net/projects/tdm-gcc/ (unofficial, recommended) [NOTE: 4.5.1 is broken, 4.5.2, 4.6.1 x86 OK, for x64 use the official release]
http://sourceforge.net/projects/mingwbuilds/ (unofficial, recommended)
http://tdm-gcc.tdragon.net/, http://sourceforge.net/projects/tdm-gcc/ (unofficial) [NOTE: 4.5.1 is broken, 4.5.2, 4.6.1 x86 OK, for x64 use the official release]
http://www.mingw.org/, http://sourceforge.net/projects/mingw/ (official 32-bit, MSYS home, broken as of 4.5.0-1)
http://mingw-w64.sourceforge.net/, http://sourceforge.net/projects/mingw-w64/ (official 64-bit, MSYS home)
http://nuwen.net/mingw.html (unofficial)

View File

@@ -64,6 +64,7 @@
/* TOFIX:
1. 'var ++'
2. '- 1' for numeric literals.
3. wrongly breaks line: 'FUNCTION Hello( /* comment */ )'
...
*/

View File

@@ -8,13 +8,13 @@ void hb_cmdargTEST( void )
{
char * pszArg;
printf("INFO: %i\n", hb_cmdargCheck( "INFO" ) );
printf(" F: %s\n", pszArg = hb_cmdargString( "F" ) ); if( pszArg ) hb_xfree( pszArg );
printf(" Fn: %i\n", hb_cmdargNum( "F" ) );
printf("TEMP: %s\n", pszArg = hb_cmdargString( "TEMP" ) ); if( pszArg ) hb_xfree( pszArg );
printf( "INFO: %i\n", hb_cmdargCheck( "INFO" ) );
printf( " F: %s\n", pszArg = hb_cmdargString( "F" ) ); if( pszArg ) hb_xfree( pszArg );
printf( " Fn: %i\n", hb_cmdargNum( "F" ) );
printf( "TEMP: %s\n", pszArg = hb_cmdargString( "TEMP" ) ); if( pszArg ) hb_xfree( pszArg );
printf("INFO: %i\n", hb_cmdargCheck( "INFO" ) );
printf(" F: %s\n", pszArg = hb_cmdargString( "F" ) ); if( pszArg ) hb_xfree( pszArg );
printf(" Fn: %i\n", hb_cmdargNum( "F" ) );
printf("TEMP: %s\n", pszArg = hb_cmdargString( "TEMP" ) ); if( pszArg ) hb_xfree( pszArg );
printf( "INFO: %i\n", hb_cmdargCheck( "INFO" ) );
printf( " F: %s\n", pszArg = hb_cmdargString( "F" ) ); if( pszArg ) hb_xfree( pszArg );
printf( " Fn: %i\n", hb_cmdargNum( "F" ) );
printf( "TEMP: %s\n", pszArg = hb_cmdargString( "TEMP" ) ); if( pszArg ) hb_xfree( pszArg );
}