ChangeLogTag:Thu May 06 18:12:15 1999 Gonzalo A. Diethelm <Gonzalo.Diethelm@jda.cl>

This commit is contained in:
Gonzalo A. Diethelm
1999-05-06 23:07:37 +00:00
parent af9bad0e07
commit f41f52e008
4 changed files with 62 additions and 30 deletions

View File

@@ -1,33 +1,44 @@
Thu May 06 18:12:15 1999 Gonzalo A. Diethelm <Gonzalo.Diethelm@jda.cl>
* 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 <info@szelvesz.hu>
! 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 <Gonzalo.Diethelm@jda.cl>

View File

@@ -20,6 +20,7 @@ ifdef LIB_DIR
LDFLAGS = -L$(LIB_DIR)
endif
LINKLIBS = $(foreach lib, $(LIBS), -l$(lib))
# LINKLIBS += -lm
AR = ar
ARFLAGS =

View File

@@ -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 )

View File

@@ -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