From f41f52e0084cd5a35a896a562cd5383500b2f6ab Mon Sep 17 00:00:00 2001 From: "Gonzalo A. Diethelm" Date: Thu, 6 May 1999 23:07:37 +0000 Subject: [PATCH] ChangeLogTag:Thu May 06 18:12:15 1999 Gonzalo A. Diethelm --- harbour/ChangeLog | 67 ++++++++++++++++++------------- harbour/config/win32/gcc.cf | 1 + harbour/source/compiler/harbour.y | 5 ++- harbour/tests/working/Makefile | 19 +++++++++ 4 files changed, 62 insertions(+), 30 deletions(-) diff --git a/harbour/ChangeLog b/harbour/ChangeLog index 8258365c71..41781b8328 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -1,33 +1,44 @@ +Thu May 06 18:12:15 1999 Gonzalo A. Diethelm + + * config/win32/gcc.cf: + Added (commented by now) linking agains the math library. + + * source/compiler/harbour.y: + Now the -q option is REALLY quiet. + + * tests/working/Makefile: + Added all of the tests to the Makefile. + Thu May 06 22:45:00 1999 Victor Szel - ! source/rtl/dates.c: - Fix to STOD(), added error checking to DTOS(), the later can be - disabled to make it faster. - * source/vm/hvm.c, include/extend.h: - strempty() -> hb_strempty(), declaration moved to .h - % source/rtl/strings.c: - hb_strempty() speed optimalization, cleanup. - * source/vm/dynsym.c: - OurStrUpr() -> hb_strupr() - _strgreater -> hb_strgreater() - * source/rtl/console.c: - _outstd() -> hb_outstd() - * source/tools/stringsx.c: - StrToken() -> hb_strtoken() - * source/rtl/strings.c: - LTrim() -> hb_LTrim() - RTrimLen() -> hb_RTrimLen() - Lower() -> hb_Lower() - Upper() -> hb_Upper() - At() -> hb_At() - Val() -> hb_Val() - * source/vm/hvm.c, source/rtl/array.c, source/rtl/strcmp.c, - include/extend.h - OurStrCmp() -> hb_itemStrCmp() - * source/rtl/*.c, source/include/extend.h - julian2greg() -> hb_julian2greg() - greg2julian() -> hb_greg2julian() - Declaration moved to extend.h + * source/rtl/dates.c: + Fix to STOD(), added error checking to DTOS(), the later can be + disabled to make it faster. + * source/vm/hvm.c, include/extend.h: + strempty() -> hb_strempty(), declaration moved to .h + * source/rtl/strings.c: + hb_strempty() speed optimalization, cleanup. + * source/vm/dynsym.c: + OurStrUpr() -> hb_strupr() + _strgreater -> hb_strgreater() + * source/rtl/console.c: + _outstd() -> hb_outstd() + * source/tools/stringsx.c: + StrToken() -> hb_strtoken() + * source/rtl/strings.c: + LTrim() -> hb_LTrim() + RTrimLen() -> hb_RTrimLen() + Lower() -> hb_Lower() + Upper() -> hb_Upper() + At() -> hb_At() + Val() -> hb_Val() + * source/vm/hvm.c, source/rtl/array.c, source/rtl/strcmp.c, + include/extend.h + OurStrCmp() -> hb_itemStrCmp() + * source/rtl/*.c, source/include/extend.h + julian2greg() -> hb_julian2greg() + greg2julian() -> hb_greg2julian() + Declaration moved to extend.h Thu May 06 13:58:48 1999 Gonzalo A. Diethelm diff --git a/harbour/config/win32/gcc.cf b/harbour/config/win32/gcc.cf index d87310b79d..53a9e4c573 100644 --- a/harbour/config/win32/gcc.cf +++ b/harbour/config/win32/gcc.cf @@ -20,6 +20,7 @@ ifdef LIB_DIR LDFLAGS = -L$(LIB_DIR) endif LINKLIBS = $(foreach lib, $(LIBS), -l$(lib)) +# LINKLIBS += -lm AR = ar ARFLAGS = diff --git a/harbour/source/compiler/harbour.y b/harbour/source/compiler/harbour.y index 53d219d4fc..29242dbaed 100644 --- a/harbour/source/compiler/harbour.y +++ b/harbour/source/compiler/harbour.y @@ -982,8 +982,6 @@ int harbour_main( int argc, char * argv[] ) char *szPath =""; FILENAME *pFileName =NULL; - printf( "Harbour compiler\nbuild %i Spring 1999\n", BUILD ); - if( argc > 1 ) { /* Command line options */ @@ -1092,6 +1090,9 @@ int harbour_main( int argc, char * argv[] ) iArg++; } + if( ! _iQuiet ) + printf( "Harbour compiler\nbuild %i Spring 1999\n", BUILD ); + if( pFileName ) { if( !pFileName->extension ) diff --git a/harbour/tests/working/Makefile b/harbour/tests/working/Makefile index 51139ca566..50cf1a5722 100644 --- a/harbour/tests/working/Makefile +++ b/harbour/tests/working/Makefile @@ -6,19 +6,26 @@ ROOT = ../../ PRG_SOURCES=\ ainstest.prg \ + and_or.prg \ + array16.prg \ arrays.prg \ asctest.prg \ atest.prg \ byref.prg \ calling.prg \ classes.prg \ + codebl2.prg \ codebloc.prg \ comments.prg \ dates.prg \ + dates2.prg \ + debugtst.prg \ docase.prg \ dupvars.prg \ + empty.prg \ errorsys.prg \ fib.prg \ + fileio.prg \ fornext.prg \ fornext2.prg \ guess.prg \ @@ -27,22 +34,33 @@ PRG_SOURCES=\ ifinline.prg \ initexit.prg \ longstr.prg \ + mankala.prg \ mathtest.prg \ + next.prg \ nums.prg \ objects.prg \ operat.prg \ procname.prg \ recursiv.prg \ + returns.prg \ rtl_test.prg \ + set_num.prg \ + set_test.prg \ statfun.prg \ statics.prg \ strcmp.prg \ strings.prg \ strings2.prg \ strings3.prg \ + strings4.prg \ t1.prg \ test.prg \ + test10.prg \ testerro.prg \ + testid.prg \ + testinc.prg \ + testmem.prg \ + testtok.prg \ transfrm.prg \ val.prg \ while.prg \ @@ -50,5 +68,6 @@ PRG_SOURCES=\ LIBS=\ vm \ rtl \ + tools \ include $(TOP)$(ROOT)config/test.cf