Return-Path: X-Original-To: apmail-httpd-dev-archive@www.apache.org Delivered-To: apmail-httpd-dev-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id D2A1A18BE3 for ; Tue, 15 Mar 2016 21:52:41 +0000 (UTC) Received: (qmail 89432 invoked by uid 500); 15 Mar 2016 21:52:41 -0000 Delivered-To: apmail-httpd-dev-archive@httpd.apache.org Received: (qmail 89364 invoked by uid 500); 15 Mar 2016 21:52:41 -0000 Mailing-List: contact dev-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 dev@httpd.apache.org Received: (qmail 89354 invoked by uid 99); 15 Mar 2016 21:52:41 -0000 Received: from pnap-us-west-generic-nat.apache.org (HELO spamd2-us-west.apache.org) (209.188.14.142) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 15 Mar 2016 21:52:41 +0000 Received: from localhost (localhost [127.0.0.1]) by spamd2-us-west.apache.org (ASF Mail Server at spamd2-us-west.apache.org) with ESMTP id 655C91A0915 for ; Tue, 15 Mar 2016 21:52:40 +0000 (UTC) X-Virus-Scanned: Debian amavisd-new at spamd2-us-west.apache.org X-Spam-Flag: NO X-Spam-Score: 1.8 X-Spam-Level: * X-Spam-Status: No, score=1.8 tagged_above=-999 required=6.31 tests=[KAM_ASCII_DIVIDERS=0.8, KAM_LAZY_DOMAIN_SECURITY=1, RCVD_IN_DNSWL_NONE=-0.0001] autolearn=disabled Received: from mx2-lw-eu.apache.org ([10.40.0.8]) by localhost (spamd2-us-west.apache.org [10.40.0.9]) (amavisd-new, port 10024) with ESMTP id lvlIVRMHfto8 for ; Tue, 15 Mar 2016 21:52:38 +0000 (UTC) Received: from node176.itex.at (mail.123x.at [194.242.35.176]) by mx2-lw-eu.apache.org (ASF Mail Server at mx2-lw-eu.apache.org) with ESMTPS id E33915F39C for ; Tue, 15 Mar 2016 21:52:37 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by node176.itex.at (Postfix) with ESMTP id 0D3BE22B72 for ; Tue, 15 Mar 2016 22:52:31 +0100 (CET) X-Virus-Scanned: Debian amavisd-new at node176.itex.at Received: from node176.itex.at ([127.0.0.1]) by localhost (node176.itex.at [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id htAzNm7Fp03O for ; Tue, 15 Mar 2016 22:52:30 +0100 (CET) Received: from [10.0.0.1] (unknown [101.161.57.214]) (Authenticated sender: normw@gknw.net) by node176.itex.at (Postfix) with ESMTPSA id C8BC721860 for ; Tue, 15 Mar 2016 22:52:29 +0100 (CET) To: "dev@httpd.apache.org" From: NormW Subject: httpd-2.4.x patches for NetWare build. Message-ID: <56E88416.8020700@gknw.net> Date: Wed, 16 Mar 2016 08:52:22 +1100 User-Agent: Mozilla/5.0 (Windows NT 5.1; rv:38.0) Gecko/20100101 Thunderbird/38.5.1 MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="------------020309070002010207010609" This is a multi-part message in MIME format. --------------020309070002010207010609 Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit G/M, Attached two simple patches for httpd-2.4.x tree: Add two extra missing symbols for mod_proxy needed to allow a NetWare build at the present time. Once the auto symbols export functionality is backported, this patch would also be removed. At the present time 2.4.x waits approval to backport mod_proxy_http2, Until then the attached diff for NWGNUmakefile in modules/http2 is required - a build system vaguery says if there is only only one build target listed in the NWGNUmakefile it will try to build itself and crash. If mod_proxy_http2 is backported it becomes the second item in the build list and all remains happy. Norm --------------020309070002010207010609 Content-Type: text/x-patch; name="add_exports_to_modproxy_NetWare.diff" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="add_exports_to_modproxy_NetWare.diff" Index: modules/proxy/NWGNUproxy =================================================================== --- modules/proxy/NWGNUproxy (revision 1735169) +++ modules/proxy/NWGNUproxy (working copy) @@ -273,6 +273,7 @@ @echo $(DL) proxy_run_scheme_handler,$(DL)>> $@ @echo $(DL) ap_proxy_acquire_connection,$(DL)>> $@ @echo $(DL) ap_proxy_backend_broke,$(DL)>> $@ + @echo $(DL) ap_proxy_buckets_lifetime_transform,$(DL)>> $@ @echo $(DL) ap_proxy_c2hex,$(DL)>> $@ @echo $(DL) ap_proxy_canon_netloc,$(DL)>> $@ @echo $(DL) ap_proxy_canonenc,$(DL)>> $@ @@ -318,6 +319,7 @@ @echo $(DL) ap_proxy_strncpy,$(DL)>> $@ @echo $(DL) ap_proxy_sync_balancer,$(DL)>> $@ @echo $(DL) ap_proxy_trans_match,$(DL)>> $@ + @echo $(DL) ap_proxy_transfer_between_connections,$(DL)>> $@ @echo $(DL) ap_proxy_valid_balancer_name,$(DL)>> $@ @echo $(DL) ap_proxy_worker_name,$(DL)>> $@ @echo $(DL) ap_proxyerror$(DL)>> $@ --------------020309070002010207010609 Content-Type: text/x-patch; name="build_one_twice_for NetWare.diff" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="build_one_twice_for NetWare.diff" Index: modules/http2/NWGNUmakefile =================================================================== --- modules/http2/NWGNUmakefile (revision 1735169) +++ modules/http2/NWGNUmakefile (working copy) @@ -153,6 +153,7 @@ # TARGET_nlm = \ $(OBJDIR)/mod_http2.nlm \ + $(OBJDIR)/mod_http2.nlm \ $(EOLIST) # --------------020309070002010207010609--