summaryrefslogtreecommitdiff
path: root/build
diff options
context:
space:
mode:
authorRainer Jung <rjung@apache.org>2016-02-05 00:20:07 +0000
committerRainer Jung <rjung@apache.org>2016-02-05 00:20:07 +0000
commit617e068f505ea6809bc473c411bf63cd1e5d2894 (patch)
tree071977531636c0bbcbdd5ccc90fc6143562defb3 /build
parent10c4dfa4ee65d92ec99aa221a8b009e8ef0c6c26 (diff)
downloadhttpd-617e068f505ea6809bc473c411bf63cd1e5d2894.tar.gz
Build symbol import and export files for
proxy on Netware using the same awk script which is already used for mod_cache. Adjust other Netware makefiles to use this new imp file. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1728574 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'build')
-rw-r--r--build/NWGNUmakefile7
1 files changed, 6 insertions, 1 deletions
diff --git a/build/NWGNUmakefile b/build/NWGNUmakefile
index 1954257eb5..8bc935abd9 100644
--- a/build/NWGNUmakefile
+++ b/build/NWGNUmakefile
@@ -23,7 +23,7 @@ FILES_prebuild_headers = \
$(PCRE)/pcre.h \
$(EOLIST)
-nlms :: libs $(NWOS)/httpd.imp $(DAV)/main/dav.imp $(STDMOD)/cache/mod_cache.imp
+nlms :: libs $(NWOS)/httpd.imp $(DAV)/main/dav.imp $(STDMOD)/cache/mod_cache.imp $(STDMOD)/proxy/mod_proxy.imp
libs :: chkapr $(NWOS)/chartables.c
@@ -35,6 +35,10 @@ $(STDMOD)/cache/mod_cache.imp: make_nw_export.awk $(STDMOD)/cache/mod_cache.h $(
@echo $(DL)GEN $@$(DL)
$(AWK) -v EXPPREFIX=AP$(VERSION_MAJMIN) -f $^ >$@
+$(STDMOD)/proxy/mod_proxy.imp: make_nw_export.awk $(STDMOD)/proxy/mod_proxy.h $(STDMOD)/proxy/proxy_util.h
+ @echo $(DL)GEN $@$(DL)
+ $(AWK) -v EXPPREFIX=AP$(VERSION_MAJMIN) -f $^ >$@
+
$(NWOS)/httpd.imp : make_nw_export.awk nw_export.i
@echo $(DL)GEN $@$(DL)
$(AWK) -v EXPPREFIX=AP$(VERSION_MAJMIN) -f $^ >$@
@@ -119,6 +123,7 @@ clean ::
$(call DEL,$(PCRE)/config.h)
$(call DEL,$(PCRE)/pcre.h)
$(call DEL,$(STDMOD)/cache/mod_cache.imp)
+ $(call DEL,$(STDMOD)/proxy/mod_proxy.imp)
$(call DEL,$(DAV)/main/dav.imp)
$(call DEL,$(NWOS)/httpd.imp)
$(call DEL,nw_export.i)