]> granicus.if.org Git - apache/commitdiff
Fix export of variables that have "extern" before their AP_DECLARE_DATA.
authorBradley Nicholes <bnicholes@apache.org>
Mon, 8 Apr 2002 22:08:34 +0000 (22:08 +0000)
committerBradley Nicholes <bnicholes@apache.org>
Mon, 8 Apr 2002 22:08:34 +0000 (22:08 +0000)
This includes ap_subreq_core_filter_handle which mod_autoindex.c now needs.

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

build/make_nw_export.awk

index 12b17a99db412bf810cd3a6aa1a93b0932171b2c..f94d56d6fde5e9d1599d52ec7f86e8ebe8a0fc39 100644 (file)
@@ -43,7 +43,7 @@ function add_symbol (sym_name) {
     next
 }
 
-/^[ \t]*AP[RU]?_DECLARE_DATA .*;$/ {
+/^[ \t]*(extern[ \t]+)?AP[RU]?_DECLARE_DATA .*;$/ {
        varname = $NF;
        gsub( /[*;]/, "", varname);
        gsub( /\[.*\]/, "", varname);