See ChangeLog entry 2001-06-29 18:40 UTC-0400 David G. Holm <dholm@jsd-llc.com>

This commit is contained in:
David G. Holm
2001-06-29 22:45:33 +00:00
parent 1d8a700413
commit 8ffc18801e
5 changed files with 18 additions and 4 deletions

View File

@@ -1,3 +1,14 @@
2001-06-29 18:40 UTC-0400 David G. Holm <dholm@jsd-llc.com>
* 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 <alinares@fivetech.com>
* makefile.bc
+ added profiler.prg support

View File

@@ -5,6 +5,8 @@
ROOT = ../
DIRS=\
libct \
libgt \
libmisc \
include $(ROOT)config/dir.cf

View File

@@ -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_ */

View File

@@ -133,6 +133,7 @@ PRG_SOURCES=\
memvarbl.prg \
menuto.prg \
objfunc.prg \
profiler.prg \
readkey.prg \
readvar.prg \
setfunc.prg \

View File

@@ -61,7 +61,7 @@
#if defined(__EMX__)
#include <emx/syscalls.h>
#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 <sys/param.h>
#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';