From 965a406919c4078fe5da26f1eb11739ff6d9aa9f Mon Sep 17 00:00:00 2001 From: Viktor Szakats Date: Tue, 20 Nov 2001 19:17:18 +0000 Subject: [PATCH] 2001-11-20 20:11 UTC+0100 Viktor Szakats --- harbour/ChangeLog | 9 +++++++++ harbour/doc/howtomak.txt | 3 +-- harbour/source/common/hbver.c | 8 ++++++++ 3 files changed, 18 insertions(+), 2 deletions(-) diff --git a/harbour/ChangeLog b/harbour/ChangeLog index 294384ced3..e25e5ae038 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -1,3 +1,12 @@ +2001-11-20 20:11 UTC+0100 Viktor Szakats + + * 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 * source/rtl/gtsln/Makefile * source/rtl/gtsln/gtsln.c diff --git a/harbour/doc/howtomak.txt b/harbour/doc/howtomak.txt index 5905dc7fce..4a1d6af4c4 100644 --- a/harbour/doc/howtomak.txt +++ b/harbour/doc/howtomak.txt @@ -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 - diff --git a/harbour/source/common/hbver.c b/harbour/source/common/hbver.c index 4ec9a44ff6..0e54590cfb 100644 --- a/harbour/source/common/hbver.c +++ b/harbour/source/common/hbver.c @@ -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 );