From 53673c34e9f376fc0e6400231e9fd4e0abc89544 Mon Sep 17 00:00:00 2001 From: "David G. Holm" Date: Tue, 18 Apr 2000 00:59:40 +0000 Subject: [PATCH] See ChangeLog entry 2000-04-17 21:00 GMT-4 David G. Holm --- harbour/ChangeLog | 11 +++++++++++ harbour/config/dos/djgpp.cf | 3 ++- harbour/source/common/hbtrace.c | 1 + 3 files changed, 14 insertions(+), 1 deletion(-) diff --git a/harbour/ChangeLog b/harbour/ChangeLog index a2fe162609..880a5aad5c 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -1,3 +1,14 @@ +2000-04-17 21:00 GMT-4 David G. Holm + + * 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 * source/common/hbstr.c * source/common/hbtrace.c diff --git a/harbour/config/dos/djgpp.cf b/harbour/config/dos/djgpp.cf index e315381cb6..3fe49dd1c1 100644 --- a/harbour/config/dos/djgpp.cf +++ b/harbour/config/dos/djgpp.cf @@ -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 diff --git a/harbour/source/common/hbtrace.c b/harbour/source/common/hbtrace.c index dd30a77129..42193ca3e7 100644 --- a/harbour/source/common/hbtrace.c +++ b/harbour/source/common/hbtrace.c @@ -38,6 +38,7 @@ #include #include +#include "hbapi.h" #include "hbtrace.h" char * hb_tr_file_ = "";