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 F22EE11ED9 for ; Wed, 23 Jul 2014 10:18:45 +0000 (UTC) Received: (qmail 47324 invoked by uid 500); 23 Jul 2014 10:18:45 -0000 Delivered-To: apmail-httpd-dev-archive@httpd.apache.org Received: (qmail 47251 invoked by uid 500); 23 Jul 2014 10:18:45 -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 47226 invoked by uid 99); 23 Jul 2014 10:18:45 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 23 Jul 2014 10:18:45 +0000 X-ASF-Spam-Status: No, hits=-2.3 required=5.0 tests=RCVD_IN_DNSWL_MED,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of rainer.jung@kippdata.de designates 195.227.30.149 as permitted sender) Received: from [195.227.30.149] (HELO mailserver.kippdata.de) (195.227.30.149) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 23 Jul 2014 10:18:42 +0000 Received: from [10.0.110.6] ([192.168.2.104]) by mailserver.kippdata.de (8.13.5/8.13.5) with ESMTP id s6NAIFMa011914 for ; Wed, 23 Jul 2014 12:18:17 +0200 (CEST) Message-ID: <53CF8BE2.5060107@kippdata.de> Date: Wed, 23 Jul 2014 12:18:10 +0200 From: Rainer Jung User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:24.0) Gecko/20100101 Thunderbird/24.6.0 MIME-Version: 1.0 To: dev@httpd.apache.org Subject: Re: svn commit: r1612653 - /httpd/httpd/trunk/server/util_pcre.c References: <20140722192908.AF0D3238896F@eris.apache.org> <53CEC773.60005@wanadoo.fr> <53CED127.2010204@kippdata.de> <53CF0117.3070805@apache.org> In-Reply-To: <53CF0117.3070805@apache.org> Content-Type: text/plain; charset=ISO-8859-15; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org On 23.07.2014 02:25, Guenter Knauf wrote: > Hi Rainer, > On 22.07.2014 23:01, Rainer Jung wrote: >> documenting the requirement PCRE >= 6.7 and dropping the check (and >> error message) for PCRE_DUPNAMES from server/util_pcre.c. > -1. > Please think of non-configure builds; > it doesnt hurt if the code errors out when the requirements do not met. Good point. But in this case even after dropping the check, it would mean the build would error out because PCRE_DUPNAMES isn't known. So then you would have to check the (new) info in the docs, that minimum PCRE version is 6.7. Of course an #error message would help because it is more explicit, but I think that's not how the code currently is structured in general. If there is a dependency for a library version, we don't check in the sources whether the right version is available. Regards, Rainer