2007-04-18 09:43 UTC+0200 Lorenzo Fiorini (lorenzo.fiorini/at/gmail.com)

* harbour/source/compiler/gencobj.c
    * fixed declaration
This commit is contained in:
Lorenzo Fiorini
2007-04-18 07:42:35 +00:00
parent 0069af9c6b
commit 2f3eb03d7f
2 changed files with 7 additions and 2 deletions

View File

@@ -8,10 +8,14 @@
2002-12-01 13:30 UTC+0100 Foo Bar <foo.bar@foobar.org>
*/
2007-04-18 09:43 UTC+0200 Lorenzo Fiorini (lorenzo.fiorini/at/gmail.com)
* harbour/source/compiler/gencobj.c
* fixed declaration
2007-04-18 09:23 UTC+0200 Lorenzo Fiorini (lorenzo.fiorini/at/gmail.com)
* harbour/source/compiler/gencobj.c
* added support of HB_CFG_FILE envvar which define the file name to use
for -go compiler switch
for -go compiler switch borrowed from xHarbour
* harbour/config/w32/mingw32.cf
* fixed a typo

View File

@@ -108,6 +108,7 @@ void hb_compGenCObj( HB_COMP_DECL, PHB_FNAME pFileName )
#else
char * pszEnv = NULL;
#endif
char * pszCfgFileName = NULL;
FILE * filecfg;
BOOL bVerbose = FALSE; /* Don't show C compiler messages (default). */
BOOL bDelTmp = TRUE; /* Delete intermediate C file (default). */
@@ -126,7 +127,7 @@ void hb_compGenCObj( HB_COMP_DECL, PHB_FNAME pFileName )
/* Set up things */
char * pszCfgFileName = hb_getenv( "HB_CFG_FILE" );
pszCfgFileName = hb_getenv( "HB_CFG_FILE" );
if( !pszCfgFileName )
{