diff options
author | Jeff Trawick <trawick@apache.org> | 2001-12-20 17:19:50 +0100 |
---|---|---|
committer | Jeff Trawick <trawick@apache.org> | 2001-12-20 17:19:50 +0100 |
commit | 51fde2472bcc8de44998b874b4bb271036da8b21 (patch) | |
tree | c9d68a0c62c40218a7b75a9481d6161ce5a1e623 /build | |
parent | fix the value of the _CEE_RUNOPTS envvar on OS/390 (diff) | |
download | apache2-51fde2472bcc8de44998b874b4bb271036da8b21.tar.xz apache2-51fde2472bcc8de44998b874b4bb271036da8b21.zip |
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
Diffstat (limited to 'build')
-rw-r--r-- | build/make_exports.awk | 4 |
1 files changed, 2 insertions, 2 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]*[(])))+", "") |