diff options
author | Bradley Nicholes <bnicholes@apache.org> | 2003-03-11 22:17:09 +0100 |
---|---|---|
committer | Bradley Nicholes <bnicholes@apache.org> | 2003-03-11 22:17:09 +0100 |
commit | e49b9341db72f60efdc736244fc43d5721c3bf0b (patch) | |
tree | 0582e3c516bac8a7e07f4724891342a9d8a376e4 | |
parent | Fix up the log resolve utility to work with NetWare. Increased the stack size (diff) | |
download | apache2-e49b9341db72f60efdc736244fc43d5721c3bf0b.tar.xz apache2-e49b9341db72f60efdc736244fc43d5721c3bf0b.zip |
Fix up the export list so that it is consistent between debug and non-debug builds
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@98987 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r-- | NWGNUmakefile | 1 | ||||
-rw-r--r-- | build/make_nw_export.awk | 14 |
2 files changed, 1 insertions, 14 deletions
diff --git a/NWGNUmakefile b/NWGNUmakefile index 1a6ab03999..a71bcb87d8 100644 --- a/NWGNUmakefile +++ b/NWGNUmakefile @@ -232,6 +232,7 @@ FILES_nlm_objs = \ $(OBJDIR)/util.o \ $(OBJDIR)/util_cfgtree.o \ $(OBJDIR)/util_charset.o \ + $(OBJDIR)/util_debug.o \ $(OBJDIR)/util_filter.o \ $(OBJDIR)/util_md5.o \ $(OBJDIR)/util_nw.o \ diff --git a/build/make_nw_export.awk b/build/make_nw_export.awk index 08a479343c..273e475cfd 100644 --- a/build/make_nw_export.awk +++ b/build/make_nw_export.awk @@ -8,20 +8,6 @@ BEGIN { # List of functions that we don't support, yet?? #/ap_some_name/{next} -# The following APIs are actually defined as macros and -# should not be included in the export list. If util_debug.c -# is included or AP_DEBUG is defined, these macros turn -# into functions and should be included in the export list. -/ap_get_module_config/{next} -/ap_set_module_config/{next} -/ap_strchr/{next} -/ap_strchr_c/{next} -/ap_strrchr/{next} -/ap_strrchr_c/{next} -/ap_strstr/{next} -/ap_strstr_c/{next} - - function add_symbol (sym_name) { if (count) { found++ |