]> granicus.if.org Git - apache/commitdiff
get proxy-as-DSO to load on AIX by fixing up some of our symbol grokking
authorJeff Trawick <trawick@apache.org>
Thu, 20 Dec 2001 16:19:50 +0000 (16:19 +0000)
committerJeff Trawick <trawick@apache.org>
Thu, 20 Dec 2001 16:19:50 +0000 (16:19 +0000)
make_exports.awk didn't handle AP_CORE_DECLARE and it didn't look in
modules/http/*.h

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@92548 13f79535-47bb-0310-9956-ffa450edef68

build/make_exports.awk
server/Makefile.in

index f9ee2561f3bcae288dc72a4ba9352df01fe31c21..0cf75f02c22ac707a7a6d8db2c13e528da42bc4c 100644 (file)
@@ -76,8 +76,8 @@ function add_symbol(symbol) {
     }
 }
 
-/^[ \t]*AP[RU]?_DECLARE[^(]*[(][^)]*[)]([^ ]* )*[^(]+[(]/ {
-    sub("[ \t]*AP[RU]?_DECLARE[^(]*[(][^)]*[)][ \t]*", "")
+/^[ \t]*AP[RU]?_(CORE_)?DECLARE[^(]*[(][^)]*[)]([^ ]* )*[^(]+[(]/ {
+    sub("[ \t]*AP[RU]?_(CORE_)?DECLARE[^(]*[(][^)]*[)][ \t]*", "")
     sub("[(].*", "")
     sub("([^ ]* (^([ \t]*[(])))+", "")
 
index 08af87044a3f80660915ea424ea5abe9734bfd40..47f028f6901e3f26d0e1f877055745d0b503205b 100644 (file)
@@ -33,7 +33,8 @@ util.lo: test_char.h
 EXPORT_FILES = $(top_srcdir)/include/*.h \
        $(top_srcdir)/os/$(OS_DIR)/*.h \
        $(top_srcdir)/srclib/apr/include/*.h \
-       $(top_srcdir)/srclib/apr-util/include/*.h
+       $(top_srcdir)/srclib/apr-util/include/*.h \
+       $(top_srcdir)/modules/http/*.h
 
 delete-exports:
        @if test -f exports.c; then \