From 49ed06b31652fe76cebf28d3b525e3cd26b0c642 Mon Sep 17 00:00:00 2001 From: "David G. Holm" Date: Wed, 13 Sep 2000 20:48:26 +0000 Subject: [PATCH] See ChangeLog entry 2000-09-13 16:45 UTC-0400 David G. Holm --- harbour/ChangeLog | 14 ++++++++++++++ harbour/contrib/rdd_ads/ads1.c | 1 + harbour/include/hbver.h | 6 +++--- harbour/source/rtl/filesys.c | 2 +- 4 files changed, 19 insertions(+), 4 deletions(-) diff --git a/harbour/ChangeLog b/harbour/ChangeLog index ff1c1a5533..1de10f4230 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -1,3 +1,17 @@ +2000-09-13 16:45 UTC-0400 David G. Holm + + * include/hbver.h + * Bumped revision to "a" and date to 2000-09-13 + for an interim release. + + * contrib/rdd_ads/ads1.c + ! Added #include to avoid warning for use of tolower() + in strcmpNoCase(). + + * source/rtl/filesys.c + ! Excluded __RSXNT__ from the DOS-centric lock/unlock #elif block + in hb_fsLock() + 2000-09-11 13:45 UTC-0400 David G. Holm * source/rdd/dbf1.c diff --git a/harbour/contrib/rdd_ads/ads1.c b/harbour/contrib/rdd_ads/ads1.c index 32d2117cfb..ecbf1a1c7f 100644 --- a/harbour/contrib/rdd_ads/ads1.c +++ b/harbour/contrib/rdd_ads/ads1.c @@ -44,6 +44,7 @@ #include "hbapilng.h" #include "hbdate.h" #include "rddads.h" +#include static ERRCODE adsRecCount( ADSAREAP pArea, ULONG * pRecCount ); diff --git a/harbour/include/hbver.h b/harbour/include/hbver.h index 6ee48e7e87..7a051460b0 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 "" /* Revision letter */ +#define HB_VER_REVISION "a" /* Revision letter */ #define HB_VER_BUILD 35 /* Build number */ #define HB_VER_YEAR 2000 /* Build year */ -#define HB_VER_MONTH 8 /* Build month */ -#define HB_VER_DAY 17 /* Build day */ +#define HB_VER_MONTH 9 /* Build month */ +#define HB_VER_DAY 13 /* Build day */ #endif /* HB_VER_H_ */ diff --git a/harbour/source/rtl/filesys.c b/harbour/source/rtl/filesys.c index 3d9a2860ff..86eb4b4fb9 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__) +#elif defined(HAVE_POSIX_IO) && !defined(__IBMCPP__) && !defined(__RSXNT__) errno = 0; switch( uiMode )