See ChangeLog entry 2001-08-31 14:30 UTC-0400 David G. Holm <dholm@jsd-llc.com>

This commit is contained in:
David G. Holm
2001-08-31 18:28:04 +00:00
parent b5c8dee6c3
commit d4d6cf8150
3 changed files with 12 additions and 2 deletions

View File

@@ -1,3 +1,13 @@
2001-08-31 14:30 UTC-0400 David G. Holm <dholm@jsd-llc.com>
* config/os2/icc.cf
* source/vm/Makefile
* Build and use mainstd.c for OS/2 instead of main.c in order
to avoid the main.c build dependencies.
Note to builders of OS/2 binary distributions: Please be
sure to include both the mainstd and mainpm object files!
2001-08-31 12:15 GMT+1 Ignacio Ortiz <ignacio@fivetech.com>
* source/bin/bld.bat
* source/include/extend.api

View File

@@ -25,7 +25,7 @@ ifeq ($(C_MAIN),)
ifeq ($(HB_GT_LIB),os2pm)
LDFLAGS +=/B"/PMtype:PM" $(TOP)$(ROOT)source/vm/$(ARCH)/mainpm.obj
else
LDFLAGS += $(TOP)$(ROOT)source/vm/$(ARCH)/main.obj
LDFLAGS += $(TOP)$(ROOT)source/vm/$(ARCH)/mainstd.obj
endif
endif
endif

View File

@@ -8,7 +8,7 @@ ifeq ($(HB_ARCHITECTURE),w32)
C_MAIN := mainstd.c mainwin.c
else
ifeq ($(HB_ARCHITECTURE),os2)
C_MAIN := main.c mainpm.c
C_MAIN := mainstd.c mainpm.c
else
C_MAIN := main.c
endif