From bd2ba2da77dcc7b7fe87cad67a8ec633af39a939 Mon Sep 17 00:00:00 2001 From: "David G. Holm" Date: Thu, 21 Sep 2000 20:22:33 +0000 Subject: [PATCH] See ChangeLog entry 2000-09-21 16:30 UTC-0400 David G. Holm --- harbour/ChangeLog | 10 ++++++++++ harbour/include/hbver.h | 4 ++-- harbour/source/rtl/filesys.c | 2 +- 3 files changed, 13 insertions(+), 3 deletions(-) diff --git a/harbour/ChangeLog b/harbour/ChangeLog index b990a492b2..4ff15bcc88 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -1,3 +1,13 @@ +2000-09-21 16:30 UTC-0400 David G. Holm + + * include/hbver.h + % Bumped the revision code to "d" and the date to 2000-09-21 + for another interim build with the latest ADS RDD fixes. + + * source/rtl/filesys.c + ! Corrected the 2000-08-28 22:50 UTC+0100 fix for hb_fsLock() + for DJGPP to exclude all other GNUC builds. + 2000-09-21 16:30 GMT+3 Alexander Kresin * source/pp/pptable.c * changed rule for setrelations .... scoped diff --git a/harbour/include/hbver.h b/harbour/include/hbver.h index f873135d7c..8bef4bee5c 100644 --- a/harbour/include/hbver.h +++ b/harbour/include/hbver.h @@ -38,10 +38,10 @@ #define HB_VER_MAJOR 0 /* Major version number */ #define HB_VER_MINOR 35 /* Minor version number */ -#define HB_VER_REVISION "c" /* Revision letter */ +#define HB_VER_REVISION "d" /* Revision letter */ #define HB_VER_BUILD 35 /* Build number */ #define HB_VER_YEAR 2000 /* Build year */ #define HB_VER_MONTH 9 /* Build month */ -#define HB_VER_DAY 20 /* Build day */ +#define HB_VER_DAY 21 /* Build day */ #endif /* HB_VER_H_ */ diff --git a/harbour/source/rtl/filesys.c b/harbour/source/rtl/filesys.c index 86eb4b4fb9..8087549b1d 100644 --- a/harbour/source/rtl/filesys.c +++ b/harbour/source/rtl/filesys.c @@ -997,7 +997,7 @@ BOOL hb_fsLock ( FHANDLE hFileHandle, ULONG ulStart, s_uiErrorLast = errno; } -#elif defined(HAVE_POSIX_IO) && !defined(__IBMCPP__) && !defined(__RSXNT__) +#elif defined(HAVE_POSIX_IO) && !defined(__IBMCPP__) && ( !defined(__GNUC__) || defined(__DJGPP__) ) errno = 0; switch( uiMode )