From c9f533e4187a3149626b7d2fc34936b954923824 Mon Sep 17 00:00:00 2001 From: Jeff Trawick Date: Thu, 20 Dec 2001 16:19:50 +0000 Subject: [PATCH] get proxy-as-DSO to load on AIX by fixing up some of our symbol grokking 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 | 4 ++-- server/Makefile.in | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/build/make_exports.awk b/build/make_exports.awk index f9ee2561f3..0cf75f02c2 100644 --- a/build/make_exports.awk +++ b/build/make_exports.awk @@ -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]*[(])))+", "") diff --git a/server/Makefile.in b/server/Makefile.in index 08af87044a..47f028f690 100644 --- a/server/Makefile.in +++ b/server/Makefile.in @@ -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 \ -- 2.50.1