diff --git a/harbour/ChangeLog b/harbour/ChangeLog index 57823d3487..78cefdcaaf 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -17,6 +17,14 @@ past entries belonging to author(s): Viktor Szakats. */ +2009-08-31 16:43 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl) + * harbour/config/dos/djgpp.mk + ! added watt library to linked library list when TCP support is + enabled in DOS builds + TODO: make the same for watcom builds - I would like to leave it + for Viktor because I'm not sure where exactly I should add it + for new watcom .mk files to not break Viktor's build concept. + 2009-08-31 16:21 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl) * harbour/source/rtl/net.c ! fixed DJGPP compilation when MAXGETHOSTNAME is not defined in diff --git a/harbour/config/dos/djgpp.mk b/harbour/config/dos/djgpp.mk index 48c636dfe1..6b1c4d7e88 100644 --- a/harbour/config/dos/djgpp.mk +++ b/harbour/config/dos/djgpp.mk @@ -46,6 +46,9 @@ ifneq ($(HB_LINKING_RTL),) ifneq ($(filter gtcrs, $(LIBS)),) LDLIBS += -l$(HB_CRS_LIB) endif + ifneq ($(HB_HAS_TCP),) + LDLIBS += -L$(HB_HAS_TCP:/inc=/lib) -lwatt + endif endif LDLIBS += -lm