Return-Path: X-Original-To: apmail-httpd-cvs-archive@www.apache.org Delivered-To: apmail-httpd-cvs-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id DB7EC1876F for ; Sat, 6 Feb 2016 00:35:30 +0000 (UTC) Received: (qmail 91532 invoked by uid 500); 6 Feb 2016 00:35:25 -0000 Delivered-To: apmail-httpd-cvs-archive@httpd.apache.org Received: (qmail 91457 invoked by uid 500); 6 Feb 2016 00:35:25 -0000 Mailing-List: contact cvs-help@httpd.apache.org; run by ezmlm Precedence: bulk Reply-To: dev@httpd.apache.org list-help: list-unsubscribe: List-Post: List-Id: Delivered-To: mailing list cvs@httpd.apache.org Received: (qmail 91448 invoked by uid 99); 6 Feb 2016 00:35:25 -0000 Received: from Unknown (HELO spamd4-us-west.apache.org) (209.188.14.142) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 06 Feb 2016 00:35:25 +0000 Received: from localhost (localhost [127.0.0.1]) by spamd4-us-west.apache.org (ASF Mail Server at spamd4-us-west.apache.org) with ESMTP id 60F43C094E for ; Sat, 6 Feb 2016 00:35:25 +0000 (UTC) X-Virus-Scanned: Debian amavisd-new at spamd4-us-west.apache.org X-Spam-Flag: NO X-Spam-Score: 1.371 X-Spam-Level: * X-Spam-Status: No, score=1.371 tagged_above=-999 required=6.31 tests=[KAM_ASCII_DIVIDERS=0.8, KAM_LAZY_DOMAIN_SECURITY=1, RP_MATCHES_RCVD=-0.429] autolearn=disabled Received: from mx1-eu-west.apache.org ([10.40.0.8]) by localhost (spamd4-us-west.apache.org [10.40.0.11]) (amavisd-new, port 10024) with ESMTP id cjJfjbCif9lS for ; Sat, 6 Feb 2016 00:35:24 +0000 (UTC) Received: from mailrelay1-us-west.apache.org (mailrelay1-us-west.apache.org [209.188.14.139]) by mx1-eu-west.apache.org (ASF Mail Server at mx1-eu-west.apache.org) with ESMTP id 047AA31AA9 for ; Sat, 6 Feb 2016 00:35:24 +0000 (UTC) Received: from svn01-us-west.apache.org (svn.apache.org [10.41.0.6]) by mailrelay1-us-west.apache.org (ASF Mail Server at mailrelay1-us-west.apache.org) with ESMTP id 1AF3FE0185 for ; Sat, 6 Feb 2016 00:35:23 +0000 (UTC) Received: from svn01-us-west.apache.org (localhost [127.0.0.1]) by svn01-us-west.apache.org (ASF Mail Server at svn01-us-west.apache.org) with ESMTP id 01D8E3A0F0B for ; Sat, 6 Feb 2016 00:35:22 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1728780 - in /httpd/httpd/trunk: build/make_nw_export.awk modules/proxy/NWGNUproxy Date: Sat, 06 Feb 2016 00:35:22 -0000 To: cvs@httpd.apache.org From: rjung@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20160206003523.01D8E3A0F0B@svn01-us-west.apache.org> Author: rjung Date: Sat Feb 6 00:35:22 2016 New Revision: 1728780 URL: http://svn.apache.org/viewvc?rev=1728780&view=rev Log: Add proxy_module to the list of symbols detected by Netware export/import awk script. We do not export proxy_module by putting it into modules/proxy/NWGNUproxy explicitely, because all accompanying proxy modules need this symbol to access their config. So let the awk script add proxy_module to the imp file and then export it from mod_proxy and import it to all other mod_proxy_xxx modules via the imp file. Modified: httpd/httpd/trunk/build/make_nw_export.awk httpd/httpd/trunk/modules/proxy/NWGNUproxy Modified: httpd/httpd/trunk/build/make_nw_export.awk URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/build/make_nw_export.awk?rev=1728780&r1=1728779&r2=1728780&view=diff ============================================================================== --- httpd/httpd/trunk/build/make_nw_export.awk (original) +++ httpd/httpd/trunk/build/make_nw_export.awk Sat Feb 6 00:35:22 2016 @@ -98,13 +98,12 @@ function add_symbol(sym_name) { add_symbol($NF) } -/^[ \t]*PROXY_DECLARE_DATA (extern[ \t]+)?.*;/ { +/^[ \t]*(extern[ \t]+(module[ \t]+)?)?PROXY_DECLARE_DATA .*;/ { gsub(/[*;\n\r]/, "") gsub(/\[.*\]/, "") add_symbol($NF) } - END { printf("Added %d symbols to export list.\n", idx) > "/dev/stderr" # sort symbols with shell sort Modified: httpd/httpd/trunk/modules/proxy/NWGNUproxy URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/modules/proxy/NWGNUproxy?rev=1728780&r1=1728779&r2=1728780&view=diff ============================================================================== --- httpd/httpd/trunk/modules/proxy/NWGNUproxy (original) +++ httpd/httpd/trunk/modules/proxy/NWGNUproxy Sat Feb 6 00:35:22 2016 @@ -222,7 +222,6 @@ endif # FILES_nlm_exports = \ @mod_proxy.imp \ - proxy_module \ $(EOLIST) #