From 304b0f2a3a6bd5f4c62ace6e5cde785cec30bb15 Mon Sep 17 00:00:00 2001 From: Viktor Szakats Date: Tue, 22 Nov 2005 09:11:23 +0000 Subject: [PATCH] 2005-11-22 10:08 UTC+0100 Viktor Szakats (viktor.szakats/syenar.hu) * doc/en/hb_apifs.txt ! Fixed doc for hb_fsSetDevMode() * source/rtl/filesys.c + Partially undone prev commit, so that now it gives unreferenced var warnings for the not-implemented platform branch. * tests/bldtest/bldtest.c + Added missing CVS ID. * samples/guestbk/Makefile * samples/guestbk/bld_b32.bat * samples/hscript/Makefile * samples/hscript/bld_b32.bat * samples/misc/Makefile * samples/pe/Makefile * tests/Makefile * utils/hbdoc/Makefile * utils/hbextern/Makefile * utils/hbmake/Makefile * utils/hbrun/Makefile * utils/hbtest/Makefile + Added missing dbf*, hbsix libs. Could not test GCC because MingW build is broken. --- harbour/ChangeLog | 28 ++++++++++++++++++++++++++++ harbour/doc/en/hb_apifs.txt | 4 ++-- harbour/samples/guestbk/Makefile | 4 ++++ harbour/samples/guestbk/bld_b32.bat | 2 ++ harbour/samples/hscript/Makefile | 4 ++++ harbour/samples/hscript/bld_b32.bat | 2 +- harbour/samples/misc/Makefile | 4 ++++ harbour/samples/pe/Makefile | 4 ++++ harbour/source/rtl/filesys.c | 3 --- harbour/tests/Makefile | 4 ++++ harbour/tests/bldtest/bldtest.c | 4 ++++ harbour/utils/hbdoc/Makefile | 6 +++++- harbour/utils/hbextern/Makefile | 4 ++++ harbour/utils/hbmake/Makefile | 26 +++++++++++++++----------- harbour/utils/hbrun/Makefile | 4 ++++ harbour/utils/hbtest/Makefile | 4 ++++ 16 files changed, 89 insertions(+), 18 deletions(-) diff --git a/harbour/ChangeLog b/harbour/ChangeLog index ce0699046e..80b24427cb 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -7,6 +7,34 @@ For example: 2002-12-01 13:30 UTC+0100 Foo Bar */ + * fixed <-x-> match marker +2005-11-22 10:08 UTC+0100 Viktor Szakats (viktor.szakats/syenar.hu) + * doc/en/hb_apifs.txt + ! Fixed doc for hb_fsSetDevMode() + + * source/rtl/filesys.c + + Partially undone prev commit, so that now it gives + unreferenced var warnings for the not-implemented + platform branch. + + * tests/bldtest/bldtest.c + + Added missing CVS ID. + + * samples/guestbk/Makefile + * samples/guestbk/bld_b32.bat + * samples/hscript/Makefile + * samples/hscript/bld_b32.bat + * samples/misc/Makefile + * samples/pe/Makefile + * tests/Makefile + * utils/hbdoc/Makefile + * utils/hbextern/Makefile + * utils/hbmake/Makefile + * utils/hbrun/Makefile + * utils/hbtest/Makefile + + Added missing dbf*, hbsix libs. + Could not test GCC because MingW build is broken. + 2005-11-22 02:22 UTC+0100 Jacek Kubica (kubica/at/wssk.wroc.pl) * makefile.bc * updated to compile source/rtl/strpeek.c diff --git a/harbour/doc/en/hb_apifs.txt b/harbour/doc/en/hb_apifs.txt index ec9963c5dc..95b86a5398 100644 --- a/harbour/doc/en/hb_apifs.txt +++ b/harbour/doc/en/hb_apifs.txt @@ -961,13 +961,13 @@ * C Prototype * * #include - * hb_fsSetDevMode( FHANDLE hFileHandle, USHORT uiDevMode ) --> void + * hb_fsSetDevMode( FHANDLE hFileHandle, USHORT uiDevMode ) --> BOOL * $ARGUMENTS$ * * * * $RETURNS$ - * + * TRUE when successful, FALSE when not. * $DESCRIPTION$ * * $EXAMPLES$ diff --git a/harbour/samples/guestbk/Makefile b/harbour/samples/guestbk/Makefile index a4883d51ca..d55de27640 100644 --- a/harbour/samples/guestbk/Makefile +++ b/harbour/samples/guestbk/Makefile @@ -21,6 +21,10 @@ LIBS=\ vm \ macro \ pp \ + dbfntx \ + dbfcdx \ + dbffpt \ + hbsix \ common \ include $(TOP)$(ROOT)config/bin.cf diff --git a/harbour/samples/guestbk/bld_b32.bat b/harbour/samples/guestbk/bld_b32.bat index 8c63568b94..8924b73e42 100644 --- a/harbour/samples/guestbk/bld_b32.bat +++ b/harbour/samples/guestbk/bld_b32.bat @@ -20,6 +20,8 @@ echo macro.lib >> build.tmp echo pp.lib >> build.tmp echo dbfntx.lib >> build.tmp echo dbfcdx.lib >> build.tmp +echo dbffpt.lib >> build.tmp +echo hbsix.lib >> build.tmp echo common.lib >> build.tmp bcc32 @build.tmp del build.tmp diff --git a/harbour/samples/hscript/Makefile b/harbour/samples/hscript/Makefile index af6b84ea58..1905b5bd65 100644 --- a/harbour/samples/hscript/Makefile +++ b/harbour/samples/hscript/Makefile @@ -19,6 +19,10 @@ LIBS=\ vm \ macro \ pp \ + dbfntx \ + dbfcdx \ + dbffpt \ + hbsix \ common \ include $(TOP)$(ROOT)config/bin.cf diff --git a/harbour/samples/hscript/bld_b32.bat b/harbour/samples/hscript/bld_b32.bat index c53f7e35b3..0e80dd9334 100644 --- a/harbour/samples/hscript/bld_b32.bat +++ b/harbour/samples/hscript/bld_b32.bat @@ -4,5 +4,5 @@ rem $Id$ rem ..\..\bin\harbour hscript /n /i..\..\include -bcc32 -O2 -I..\..\include -L..\..\lib -ehscript.exe hscript.c debug.lib vm.lib rtl.lib gtwin.lib lang.lib rdd.lib macro.lib pp.lib dbfntx.lib dbfcdx.lib common.lib +bcc32 -O2 -I..\..\include -L..\..\lib -ehscript.exe hscript.c debug.lib vm.lib rtl.lib gtwin.lib lang.lib rdd.lib macro.lib pp.lib dbfntx.lib dbfcdx.lib dbffpt.lib hbsix.lib common.lib rem del hscript.c diff --git a/harbour/samples/misc/Makefile b/harbour/samples/misc/Makefile index 702cd7cd54..ad90a918dd 100644 --- a/harbour/samples/misc/Makefile +++ b/harbour/samples/misc/Makefile @@ -14,6 +14,10 @@ LIBS=\ vm \ macro \ pp \ + dbfntx \ + dbfcdx \ + dbffpt \ + hbsix \ common \ ifeq ($(PM),) diff --git a/harbour/samples/pe/Makefile b/harbour/samples/pe/Makefile index c31ce25660..93fc50e4bf 100644 --- a/harbour/samples/pe/Makefile +++ b/harbour/samples/pe/Makefile @@ -22,6 +22,10 @@ LIBS=\ vm \ macro \ pp \ + dbfntx \ + dbfcdx \ + dbffpt \ + hbsix \ common \ include $(TOP)$(ROOT)config/bin.cf diff --git a/harbour/source/rtl/filesys.c b/harbour/source/rtl/filesys.c index cb4f94dad4..a900e4308a 100644 --- a/harbour/source/rtl/filesys.c +++ b/harbour/source/rtl/filesys.c @@ -851,9 +851,6 @@ BOOL HB_EXPORT hb_fsSetDevMode( FHANDLE hFileHandle, USHORT uiDevMode ) #else - HB_SYMBOL_UNUSED( hFileHandle ); - HB_SYMBOL_UNUSED( uiDevMode ); - hb_fsSetError( ( USHORT ) FS_ERROR ); return FALSE; diff --git a/harbour/tests/Makefile b/harbour/tests/Makefile index c015d0444f..331052cdc8 100644 --- a/harbour/tests/Makefile +++ b/harbour/tests/Makefile @@ -18,6 +18,10 @@ LIBS=\ vm \ macro \ pp \ + dbfntx \ + dbfcdx \ + dbffpt \ + hbsix \ common \ ifeq ($(PM),) diff --git a/harbour/tests/bldtest/bldtest.c b/harbour/tests/bldtest/bldtest.c index 53f7be7a76..75f0973beb 100644 --- a/harbour/tests/bldtest/bldtest.c +++ b/harbour/tests/bldtest/bldtest.c @@ -1,3 +1,7 @@ +/* + * $Id$ + */ + #include "hbdefs.h" int main() diff --git a/harbour/utils/hbdoc/Makefile b/harbour/utils/hbdoc/Makefile index 0198d06267..dae25a7270 100644 --- a/harbour/utils/hbdoc/Makefile +++ b/harbour/utils/hbdoc/Makefile @@ -14,7 +14,7 @@ PRG_SOURCES=\ gentrf.prg \ genng.prg \ genhtm.prg \ - genchm.prg \ + genchm.prg \ genrtf.prg \ genhpc.prg \ genasc.prg \ @@ -39,6 +39,10 @@ LIBS=\ macro \ pp \ lang \ + dbfntx \ + dbfcdx \ + dbffpt \ + hbsix \ common \ include $(TOP)$(ROOT)config/bin.cf diff --git a/harbour/utils/hbextern/Makefile b/harbour/utils/hbextern/Makefile index aa82f08cbf..9a89123936 100644 --- a/harbour/utils/hbextern/Makefile +++ b/harbour/utils/hbextern/Makefile @@ -23,6 +23,10 @@ LIBS=\ vm \ macro \ pp \ + dbfntx \ + dbfcdx \ + dbffpt \ + hbsix \ common \ include $(TOP)$(ROOT)config/bin.cf diff --git a/harbour/utils/hbmake/Makefile b/harbour/utils/hbmake/Makefile index b6db625aa9..e7004fe51a 100644 --- a/harbour/utils/hbmake/Makefile +++ b/harbour/utils/hbmake/Makefile @@ -9,19 +9,19 @@ endif ROOT = ../../ PRG_SOURCES=\ - hbmake.prg \ - hbmutils.prg \ - fclass1.prg \ - ffile1.prg \ - ft_funcs.prg \ - radios.prg \ - checks.prg \ - pickarry.prg \ - pickfile.prg \ - prb_stak.prg \ + hbmake.prg \ + hbmutils.prg \ + fclass1.prg \ + ffile1.prg \ + ft_funcs.prg \ + radios.prg \ + checks.prg \ + pickarry.prg \ + pickfile.prg \ + prb_stak.prg \ C_SOURCES=\ - hbmlang.c \ + hbmlang.c \ PRG_MAIN=hbmake.prg @@ -36,6 +36,10 @@ LIBS=\ macro \ pp \ lang \ + dbfntx \ + dbfcdx \ + dbffpt \ + hbsix \ common \ include $(TOP)$(ROOT)config/bin.cf diff --git a/harbour/utils/hbrun/Makefile b/harbour/utils/hbrun/Makefile index e1a7cd166a..3493a0ff82 100644 --- a/harbour/utils/hbrun/Makefile +++ b/harbour/utils/hbrun/Makefile @@ -24,6 +24,10 @@ LIBS=\ vm \ macro \ pp \ + dbfntx \ + dbfcdx \ + dbffpt \ + hbsix \ common \ include $(TOP)$(ROOT)config/bin.cf diff --git a/harbour/utils/hbtest/Makefile b/harbour/utils/hbtest/Makefile index ec38256f47..c0ce8a8216 100644 --- a/harbour/utils/hbtest/Makefile +++ b/harbour/utils/hbtest/Makefile @@ -32,6 +32,10 @@ LIBS=\ rtl \ vm \ macro \ + dbfntx \ + dbfcdx \ + dbffpt \ + hbsix \ common \ include $(TOP)$(ROOT)config/bin.cf