See ChangeLog entry 2000-04-17 21:00 GMT-4 David G. Holm <dholm@jsd-llc.com>

This commit is contained in:
David G. Holm
2000-04-18 00:59:40 +00:00
parent 3814a492d6
commit 53673c34e9
3 changed files with 14 additions and 1 deletions

View File

@@ -1,3 +1,14 @@
2000-04-17 21:00 GMT-4 David G. Holm <dholm@jsd-llc.com>
* config/dos/djgpp.cf
! Each LINKPATH entry must be written to the response file separately,
because otherwise the DOS command line length is exceeded. It is not
necessary to do the same for LINKLIBS at this time, but why tempt
fate? So each LINKLIBS entry is also written separately.
* source/common/hbtrace.c
! Added #include "hbapi.h"
2000-04-17 20:30 GMT-4 David G. Holm <dholm@jsd-llc.com>
* source/common/hbstr.c
* source/common/hbtrace.c

View File

@@ -64,7 +64,8 @@ endef
define link_exe_file
echo $(LDFLAGS) $(LD_OUT)$@ > __link__.tmp
$(foreach file, $^, $(link_file))
echo $(LINKPATHS) $(LINKLIBS) >> __link__.tmp
$(foreach file, $(LINKPATHS), $(link_file))
$(foreach file, $(LINKLIBS), $(link_file))
-$(LD) @__link__.tmp
endef

View File

@@ -38,6 +38,7 @@
#include <stdlib.h>
#include <string.h>
#include "hbapi.h"
#include "hbtrace.h"
char * hb_tr_file_ = "";