2010-03-07 17:31 UTC+0100 Viktor Szakats (harbour.01 syenar.hu)

* utils/hbmk2/hbmk2.prg
    ! Cosmetic fix to generated temp stub file. Normally nobody 
      sees this file, but anyway.
This commit is contained in:
Viktor Szakats
2010-03-07 16:32:18 +00:00
parent 61739ddb58
commit 95f7efb18e
2 changed files with 12 additions and 3 deletions

View File

@@ -17,6 +17,11 @@
past entries belonging to author(s): Viktor Szakats.
*/
2010-03-07 17:31 UTC+0100 Viktor Szakats (harbour.01 syenar.hu)
* utils/hbmk2/hbmk2.prg
! Cosmetic fix to generated temp stub file. Normally nobody
sees this file, but anyway.
2010-03-07 17:22 UTC+0100 Viktor Szakats (harbour.01 syenar.hu)
* contrib/hbpgsql/tests/simple.prg
! Fixed date in SQL command to work regardless of mm/dd

View File

@@ -3886,8 +3886,10 @@ FUNCTION hbmk2( aArgs, /* @ */ lPause )
cFile += '' + Chr( 10 )
AEval( array, {| tmp | cFile += 'HB_FUNC_EXTERN( ' + tmp + ' );' + Chr( 10 ) } )
IF l_cCMAIN != NIL
cFile += '' + Chr( 10 ) +;
'HB_EXTERN_BEGIN' + Chr( 10 ) +;
IF ! Empty( array )
cFile += '' + Chr( 10 )
ENDIF
cFile += 'HB_EXTERN_BEGIN' + Chr( 10 ) +;
'void ' + l_cCMAIN + '( void );' + Chr( 10 ) +;
'HB_EXTERN_END' + Chr( 10 )
ENDIF
@@ -3896,7 +3898,9 @@ FUNCTION hbmk2( aArgs, /* @ */ lPause )
cFile += '{' + Chr( 10 )
AEval( array, {| tmp | cFile += ' HB_FUNC_EXEC( ' + tmp + ' );' + Chr( 10 ) } )
IF l_cCMAIN != NIL
cFile += '' + Chr( 10 )
IF ! Empty( array )
cFile += '' + Chr( 10 )
ENDIF
cFile += ' ' + l_cCMAIN + '();' + Chr( 10 )
ENDIF
cFile += '}' + Chr( 10 )