Return-Path: Delivered-To: apmail-httpd-dev-archive@www.apache.org Received: (qmail 77108 invoked from network); 20 Jun 2006 16:25:44 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 20 Jun 2006 16:25:44 -0000 Received: (qmail 46537 invoked by uid 500); 20 Jun 2006 16:25:36 -0000 Delivered-To: apmail-httpd-dev-archive@httpd.apache.org Received: (qmail 46370 invoked by uid 500); 20 Jun 2006 16:25:36 -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 46299 invoked by uid 99); 20 Jun 2006 16:25:35 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 20 Jun 2006 09:25:35 -0700 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_HELO_PASS,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: domain of jorton@redhat.com designates 66.187.233.31 as permitted sender) Received: from [66.187.233.31] (HELO mx1.redhat.com) (66.187.233.31) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 20 Jun 2006 09:25:35 -0700 Received: from int-mx1.corp.redhat.com (int-mx1.corp.redhat.com [172.16.52.254]) by mx1.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k5KGPDqs032369 for ; Tue, 20 Jun 2006 12:25:14 -0400 Received: from turnip.cambridge.redhat.com (turnip.cambridge.redhat.com [172.16.18.137]) by int-mx1.corp.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k5KGPD6J004561 for ; Tue, 20 Jun 2006 12:25:13 -0400 Received: from turnip.cambridge.redhat.com (localhost.localdomain [127.0.0.1]) by turnip.cambridge.redhat.com (8.13.6/8.13.5) with ESMTP id k5KGPCDW010499 for ; Tue, 20 Jun 2006 17:25:12 +0100 Received: (from jorton@localhost) by turnip.cambridge.redhat.com (8.13.6/8.13.6/Submit) id k5KGPCQq010498 for dev@httpd.apache.org; Tue, 20 Jun 2006 17:25:12 +0100 X-Authentication-Warning: turnip.cambridge.redhat.com: jorton set sender to jorton@redhat.com using -f Date: Tue, 20 Jun 2006 17:25:12 +0100 From: Joe Orton To: dev@httpd.apache.org Subject: Re: Trouble with the bundled PCRE Message-ID: <20060620162512.GA10361@redhat.com> Mail-Followup-To: dev@httpd.apache.org References: <1f9222b70606200339p2ca101eci24a06ce0d67b158c@mail.gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: <1f9222b70606200339p2ca101eci24a06ce0d67b158c@mail.gmail.com> User-Agent: Mutt/1.4.2.1i X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N On Tue, Jun 20, 2006 at 11:39:29AM +0100, Ivan Ristic wrote: > I have a problem with the bundled PCRE that I am not sure how to > resolve. Basically, in a module I need to access more functionality > than provided by the Apache PCRE wrapper. (More specifically, I need > to perform matching against strings that are not NULL-terminated.) I > can do this if I have the Apache source code around, simply by using > the PCRE headers that are in the source tree. But I can't do that when > there is no source code since the PCRE headers are not available. Is > there a smart way around this? Am I missing anything? > > Is there a reason for not including the PCRE headers in the /include/ > directory of the Apache installation? It doesn't make sense to do that since httpd might be configured using an external copy of PCRE (configure --with-pcre). Exposing more of PCRE through ap_regex.h might be OK, it depends on what exactly you propose. Regards, joe