Return-Path: Delivered-To: apmail-httpd-dev-archive@www.apache.org Received: (qmail 90410 invoked from network); 26 Nov 2004 09:44:49 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur-2.apache.org with SMTP; 26 Nov 2004 09:44:49 -0000 Received: (qmail 35597 invoked by uid 500); 26 Nov 2004 09:44:41 -0000 Delivered-To: apmail-httpd-dev-archive@httpd.apache.org Received: (qmail 35535 invoked by uid 500); 26 Nov 2004 09:44:40 -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: Delivered-To: mailing list dev@httpd.apache.org Received: (qmail 35521 invoked by uid 99); 26 Nov 2004 09:44:40 -0000 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 (hermes.apache.org: domain of jorton@redhat.com designates 66.187.233.31 as permitted sender) Received: from mx1.redhat.com (HELO mx1.redhat.com) (66.187.233.31) by apache.org (qpsmtpd/0.28) with ESMTP; Fri, 26 Nov 2004 01:44:39 -0800 Received: from int-mx1.corp.redhat.com (int-mx1.corp.redhat.com [172.16.52.254]) by mx1.redhat.com (8.12.11/8.12.11) with ESMTP id iAQ9iQw8007314 for ; Fri, 26 Nov 2004 04:44:26 -0500 Received: from radish.cambridge.redhat.com (radish.cambridge.redhat.com [172.16.18.90]) by int-mx1.corp.redhat.com (8.11.6/8.11.6) with ESMTP id iAQ9iLr27915 for ; Fri, 26 Nov 2004 04:44:21 -0500 Received: from radish.cambridge.redhat.com (localhost.localdomain [127.0.0.1]) by radish.cambridge.redhat.com (8.13.1/8.12.7) with ESMTP id iAQ9iKc4016561 for ; Fri, 26 Nov 2004 09:44:20 GMT Received: (from jorton@localhost) by radish.cambridge.redhat.com (8.13.1/8.12.10/Submit) id iAQ9iJqD016560 for dev@httpd.apache.org; Fri, 26 Nov 2004 09:44:19 GMT Date: Fri, 26 Nov 2004 09:44:19 +0000 From: Joe Orton To: dev@httpd.apache.org Subject: Re: PATCH: call aclocal for PCRE in buildconf Message-ID: <20041126094419.GB15984@redhat.com> Mail-Followup-To: dev@httpd.apache.org References: <41A66890.5070801@apache.org> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: <41A66890.5070801@apache.org> User-Agent: Mutt/1.4.1i X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N On Thu, Nov 25, 2004 at 03:19:44PM -0800, Brian Pane wrote: > I found that the configure.in in recent releases of PCRE uses some > autoconf macros that won't work unless aclocal is called first to > produce a proper aclocal.m4: AC_PROG_LIBTOOL and AC_LIBTOOL_WIN32_DLL Those macros should not be left in pcre/configure.in in a merge to a newer PCRE, PCRE should not create and use its own copy of libtool, that way lies disaster - configure.in would need to be adjusted to work as the current build does, using the APR-supplied libtool script. So it shouldn't be necessary to run aclocal. joe