diff --git a/harbour/ChangeLog b/harbour/ChangeLog index 1bcc5b8577..7679e34b53 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -1,3 +1,14 @@ +2001-06-29 18:40 UTC-0400 David G. Holm + + * contrib/Makefile + + Build the ct3 and gt libraries along with the misc library. + * include/hbver.h + * Version 0.37a, dated 2001-06-29. + * source/rtl/Makefile + + Added the new profiler.prg file. + * source/rtl/net.c + ! Fix for w32.mingw32 build. + 2001-06-29 17:15 GMT+1 Antonio Linares * makefile.bc + added profiler.prg support diff --git a/harbour/contrib/Makefile b/harbour/contrib/Makefile index 834eb2cf70..c136c86973 100644 --- a/harbour/contrib/Makefile +++ b/harbour/contrib/Makefile @@ -5,6 +5,8 @@ ROOT = ../ DIRS=\ + libct \ + libgt \ libmisc \ include $(ROOT)config/dir.cf diff --git a/harbour/include/hbver.h b/harbour/include/hbver.h index 7a5bf9711d..ea4814b03f 100644 --- a/harbour/include/hbver.h +++ b/harbour/include/hbver.h @@ -60,10 +60,10 @@ #endif #define HB_VER_MAJOR 0 /* Major version number */ #define HB_VER_MINOR 37 /* Minor version number */ -#define HB_VER_REVISION " " /* Revision letter */ +#define HB_VER_REVISION "a" /* Revision letter */ #define HB_VER_BUILD 37 /* Build number */ #define HB_VER_YEAR 2001 /* Build year */ #define HB_VER_MONTH 06 /* Build month */ -#define HB_VER_DAY 26 /* Build day */ +#define HB_VER_DAY 29 /* Build day */ #endif /* HB_VER_H_ */ diff --git a/harbour/source/rtl/Makefile b/harbour/source/rtl/Makefile index edadb5ac01..bf761e2dde 100644 --- a/harbour/source/rtl/Makefile +++ b/harbour/source/rtl/Makefile @@ -133,6 +133,7 @@ PRG_SOURCES=\ memvarbl.prg \ menuto.prg \ objfunc.prg \ + profiler.prg \ readkey.prg \ readvar.prg \ setfunc.prg \ diff --git a/harbour/source/rtl/net.c b/harbour/source/rtl/net.c index 96e082567a..d2176eef29 100644 --- a/harbour/source/rtl/net.c +++ b/harbour/source/rtl/net.c @@ -61,7 +61,7 @@ #if defined(__EMX__) #include #define gethostname __gethostname -#elif defined(__DJGPP__) || defined(__RSX32__) || defined(__GNUC__) && ! defined(HB_OS_OS2) +#elif defined(__DJGPP__) || defined(__RSX32__) || defined(__GNUC__) && ! defined(HB_OS_OS2) && !defined(__MINGW32__) #include #endif #define MAXGETHOSTNAME 256 /* should be enough for a host name */ @@ -72,7 +72,7 @@ HB_FUNC( NETNAME ) { -#if defined(__DJGPP__) || defined(__RSX32__) || defined(__GNUC__) +#if defined(__DJGPP__) || defined(__RSX32__) || defined(__GNUC__) && !defined(__MINGW32__) { char * pszValue = (char *) hb_xgrab(MAXGETHOSTNAME+1); pszValue[ 0 ] = '\0';