From: Guenter Knauf Date: Tue, 8 Mar 2011 16:11:33 +0000 (+0000) Subject: NetWare build overhaul in order to compile on Linux. X-Git-Tag: 2.3.12~270 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=27a593f43a5d25c90df12076c43460f4d8378e02;p=apache NetWare build overhaul in order to compile on Linux. Fixed error with sed replacement. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1079410 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/build/NWGNUtail.inc b/build/NWGNUtail.inc index 483a86d7e2..f63b5409b5 100644 --- a/build/NWGNUtail.inc +++ b/build/NWGNUtail.inc @@ -35,12 +35,12 @@ ifeq "$(NLM_STACK_SIZE)" "" NLM_STACK_SIZE = 65536 endif -ifeq "$(NLM_ENTRY_SYM = -NLM_ENTRY_SYM = +ifeq "$(NLM_ENTRY_SYM)" "" +NLM_ENTRY_SYM = _LibCPrelude endif -ifeq "$(NLM_EXIT_SYM = -NLM_EXIT_SYM = +ifeq "$(NLM_EXIT_SYM)" "" +NLM_EXIT_SYM = _LibCPostlude endif # @@ -293,8 +293,8 @@ ifneq "$(NLM_VERSION)" "" else @echo $(DL)version $(VERSION)$(DL)>> $(@:.opt=.def) endif - @echo $(DL)start $(NLM_ENTRY_SYM = - @echo $(DL)exit $(NLM_EXIT_SYM = + @echo $(DL)start $(NLM_ENTRY_SYM)$(DL)>> $(@:.opt=.def) + @echo $(DL)exit $(NLM_EXIT_SYM)$(DL)>> $(@:.opt=.def) ifneq "$(NLM_CHECK_SYM)" "" @echo $(DL)check $(NLM_CHECK_SYM)$(DL)>> $(@:.opt=.def) endif