diff --git a/harbour/ChangeLog b/harbour/ChangeLog index 67472f8f1d..d924e19dd4 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -1,3 +1,13 @@ +20000308-18:05 GMT+1 Victor Szakats + * makefile.vc + ! Small correction. + * make_tpl.* + bin/bld_tpl.* + ! "<>" chars around the email address replaced with "()", since it + confused some OSes. + * source/rtl/tget.prg + ! TOFIX added. + 20000308-15:05 GMT+1 Ryszard Glab *source/rtl/gt/gtstd.c diff --git a/harbour/bin/bld_tpl.bat b/harbour/bin/bld_tpl.bat index a06b859814..cb26063346 100644 --- a/harbour/bin/bld_tpl.bat +++ b/harbour/bin/bld_tpl.bat @@ -10,7 +10,7 @@ rem Template to build a final Harbour executable, using Harbour rem with the C code generation feature, then calling the proper C rem linker/compiler. rem -rem Copyright 1999 Victor Szakats +rem Copyright 1999-2000 Victor Szakats (info@szelvesz.hu) rem See doc/license.txt for licensing terms. rem --------------------------------------------------------------- diff --git a/harbour/bin/bld_tpl.cmd b/harbour/bin/bld_tpl.cmd index dd41336192..bb69e51783 100644 --- a/harbour/bin/bld_tpl.cmd +++ b/harbour/bin/bld_tpl.cmd @@ -10,7 +10,7 @@ rem Template to build a final Harbour executable, using Harbour rem with the C code generation feature, then calling the proper C rem linker/compiler. rem -rem Copyright 1999 Victor Szakats +rem Copyright 1999-2000 Victor Szakats (info@szelvesz.hu) rem See doc/license.txt for licensing terms. rem --------------------------------------------------------------- diff --git a/harbour/make_tpl.bat b/harbour/make_tpl.bat index 2f11d74f19..090b7906ec 100644 --- a/harbour/make_tpl.bat +++ b/harbour/make_tpl.bat @@ -12,7 +12,7 @@ rem rem For further information about the GNU make system please rem check doc/gmake.txt rem -rem Copyright 1999 Victor Szakats +rem Copyright 1999-2000 Victor Szakats (info@szelvesz.hu) rem See doc/license.txt for licensing terms. rem --------------------------------------------------------------- diff --git a/harbour/make_tpl.cmd b/harbour/make_tpl.cmd index 3a54b964ac..bfd6d7a749 100644 --- a/harbour/make_tpl.cmd +++ b/harbour/make_tpl.cmd @@ -12,7 +12,7 @@ rem rem For further information about the GNU make system please rem check doc/gmake.txt rem -rem Copyright 1999 Victor Szakats +rem Copyright 1999-2000 Victor Szakats (info@szelvesz.hu) rem See doc/license.txt for licensing terms. rem --------------------------------------------------------------- diff --git a/harbour/make_tpl.sh b/harbour/make_tpl.sh index 19be38bcea..cbc0d65ec3 100644 --- a/harbour/make_tpl.sh +++ b/harbour/make_tpl.sh @@ -12,7 +12,7 @@ # For further information about the GNU make system please # check doc/gmake.txt # -# Copyright 1999 Victor Szakats +# Copyright 1999-2000 Victor Szakats (info@szelvesz.hu) # See doc/license.txt for licensing terms. # --------------------------------------------------------------- diff --git a/harbour/makefile.vc b/harbour/makefile.vc index 3a1a959462..ef3ede90f6 100644 --- a/harbour/makefile.vc +++ b/harbour/makefile.vc @@ -837,7 +837,7 @@ $(OBJ_DIR)\tone.obj : $(RTL_DIR)\tone.c $(CC) -W1 -nologo -I$(INCLUDE_DIR) -DHARBOUR_USE_WIN_GTAPI -c -TP -Fo$@ $** $(OBJ_DIR)\trace.obj : $(RTL_DIR)\trace.c - $(CC) -W1 -nologo -I$(INCLUDE_DIR) -DHARBOUR_USE_WIN_GTAPI -c -TP -Fo$@ $** + $(CC) $(CLIBFLAGS) -Fo$@ $** $(OBJ_DIR)\transfrm.obj : $(RTL_DIR)\transfrm.c $(CC) $(CLIBFLAGS) -Fo$@ $** diff --git a/harbour/source/rtl/tget.prg b/harbour/source/rtl/tget.prg index ff8c60faaa..712908fe06 100644 --- a/harbour/source/rtl/tget.prg +++ b/harbour/source/rtl/tget.prg @@ -1068,6 +1068,9 @@ return TGet():New( nRow, nCol, bVarBlock, cVarName, cPicture, cColor ) //---------------------------------------------------------------------------// +/* TOFIX: Clipper will do a compiler hack to internally generate a setget + block for these function calls when not specified. */ + function __GET( uVar, cVarName, cPicture, bValid, bWhen, bSetGet ) return _GET_( uVar, cVarName, cPicture, bValid, bWhen, bSetGet )