]> granicus.if.org Git - apache/commitdiff
Pick up Brad Nicholes' old fix so that make_exports.awk can handle
authorJeff Trawick <trawick@apache.org>
Fri, 21 Dec 2001 13:50:41 +0000 (13:50 +0000)
committerJeff Trawick <trawick@apache.org>
Fri, 21 Dec 2001 13:50:41 +0000 (13:50 +0000)
AP_HOOK invocations which span lines.

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

STATUS
build/make_exports.awk

diff --git a/STATUS b/STATUS
index 450f3aa1405a2df371ca92a98c1719868ae1197f..22df7df17be5348cf7ae21aea4cbc2ca575ec138 100644 (file)
--- a/STATUS
+++ b/STATUS
@@ -1,5 +1,5 @@
 APACHE 2.0 STATUS:                                             -*-text-*-
-Last modified at [$Date: 2001/12/17 22:05:58 $]
+Last modified at [$Date: 2001/12/21 13:50:41 $]
 
 Release:
 
@@ -92,13 +92,6 @@ RELEASE SHOWSTOPPERS:
                 platforms, and should only be used in MPMs like worker
                 with limited OS exposure.
 
-    * make_exports.awk doesn't handle declarations that span multiple
-      lines.  Thus, stuff like ap_hook_error_log doesn't end up in
-      exports.c and httpd.exp.  This can cause DSO modules which call
-      ap_hook_error_log (or other missing functions -- if there are
-      any) to segfault on AIX and can probably cause load or other
-      errors on some other platforms.
-
 RELEASE NON-SHOWSTOPPERS BUT WOULD BE REAL NICE TO WRAP THESE UP:
 
     * Handling of %2f in URIs.  Currently both 1.3 and 2.0
index 0cf75f02c22ac707a7a6d8db2c13e528da42bc4c..09651f2af6a5f94e906913e5f6981a75a8392bda 100644 (file)
@@ -85,7 +85,7 @@ function add_symbol(symbol) {
     next
 }
 
-/^[ \t]*AP_DECLARE_HOOK[^(]*[(][^)]*[)]/ {
+/^[ \t]*AP_DECLARE_HOOK[^(]*[(][^)]*/ {
     split($0, args, ",")
     symbol = args[2]
     sub("^[ \t]+", "", symbol)