See ChangeLog entry 2000-09-15 17:45 UTC-0400 David G. Holm <dholm@jsd-llc.com>

This commit is contained in:
David G. Holm
2000-09-15 21:52:46 +00:00
parent 2a695a6c37
commit ad3acaea71
3 changed files with 21 additions and 3 deletions

View File

@@ -1,3 +1,15 @@
2000-09-15 17:45 UTC-0400 David G. Holm <dholm@jsd-llc.com>
* include/hbver.h
* Bumped revision to "b" and date to 2000-09-15
for another interim release.
* source/vm/Makefile
% If compiling for the w32 hb_architecture, then compile both
the mainstd.c and mainwin.c modules instead of main.c, so
that the same library can be used to make both console and
windows applications.
2000-09-14 10:23 UTC+0800 Brian Hays <bhays@abacuslaw.com>
* contrib/rdd_ads/ads1.c
* adsSkip(): fix for dbskip(0)

View File

@@ -38,10 +38,10 @@
#define HB_VER_MAJOR 0 /* Major version number */
#define HB_VER_MINOR 35 /* Minor version number */
#define HB_VER_REVISION "a" /* Revision letter */
#define HB_VER_REVISION "b" /* 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 13 /* Build day */
#define HB_VER_DAY 15 /* Build day */
#endif /* HB_VER_H_ */

View File

@@ -4,6 +4,12 @@
ROOT = ../../
ifeq ($(HB_ARCHITECTURE),w32)
C_MAIN := mainstd.c mainwin.c
else
C_MAIN := main.c
endif
C_SOURCES=\
arrays.c \
arrayshb.c \
@@ -23,7 +29,7 @@ C_SOURCES=\
initsymb.c \
itemapi.c \
macro.c \
main.c \
$(C_MAIN) \
memvars.c \
memvclip.c \
pcount.c \