2001-11-20 20:11 UTC+0100 Viktor Szakats <viktor.szakats@syenar.hu>

This commit is contained in:
Viktor Szakats
2001-11-20 19:17:18 +00:00
parent 03e71f07e1
commit 965a406919
3 changed files with 18 additions and 2 deletions

View File

@@ -1,3 +1,12 @@
2001-11-20 20:11 UTC+0100 Viktor Szakats <viktor.szakats@syenar.hu>
* doc/howtomak.txt
* Changed the requirement to Bison 1.28
* source/common/hbver.c
+ Displays the HB_FM_STATISTICS setting in the /BUILD or //BUILD
switches.
2001-11-20 08:18 GMT Dave Pearson <davep@davep.org>
* source/rtl/gtsln/Makefile
* source/rtl/gtsln/gtsln.c

View File

@@ -7,7 +7,7 @@ HOW TO BUILD HARBOUR FROM THE SOURCE
You'll need these:
- Flex
- Bison 1.25 or upper (set BISON_SIMPLE envvar to point to bison.simple)
- Bison 1.28 or upper (set BISON_SIMPLE envvar to point to bison.simple)
- A supported (check MAKE_GNU.BAT for a list) C compiler
(with all the envvars set (PATH, LIB, INCLUDE, etc...))
- GNU-make if you want to use it with some other C compiler than GCC
@@ -33,4 +33,3 @@ To build a final executable, see above, but use BIN/BLD*.*
instead of MAKE*.*
Viktor Szakats <viktor.szakats@syenar.hu>

View File

@@ -569,6 +569,14 @@ void hb_verBuildInfo( void )
#endif
hb_conOutErr( hb_conNewLine(), 0 );
hb_conOutErr( "Memory tracing and statistics: ", 0 );
#if defined( HB_FM_STATISTICS )
hb_conOutErr( "On", 0 );
#else
hb_conOutErr( "Off", 0 );
#endif
hb_conOutErr( hb_conNewLine(), 0 );
{
char buffer[ 64 ];
sprintf( buffer, "Maximum symbol name length: %i", HB_SYMBOL_NAME_LEN );