Return-Path: Delivered-To: apmail-httpd-apreq-cvs-archive@www.apache.org Received: (qmail 84789 invoked from network); 24 Aug 2006 10:21:23 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 24 Aug 2006 10:21:23 -0000 Received: (qmail 70105 invoked by uid 500); 24 Aug 2006 10:21:21 -0000 Delivered-To: apmail-httpd-apreq-cvs-archive@httpd.apache.org Received: (qmail 70073 invoked by uid 500); 24 Aug 2006 10:21:21 -0000 Mailing-List: contact apreq-cvs-help@httpd.apache.org; run by ezmlm Precedence: bulk Reply-To: apreq-dev@httpd.apache.org List-Post: List-Help: List-Unsubscribe: List-Id: Delivered-To: mailing list apreq-cvs@httpd.apache.org Received: (qmail 70044 invoked by uid 99); 24 Aug 2006 10:21:21 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 24 Aug 2006 03:21:21 -0700 X-ASF-Spam-Status: No, hits=-9.4 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: local policy) Received: from [140.211.166.113] (HELO eris.apache.org) (140.211.166.113) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 24 Aug 2006 03:21:19 -0700 Received: by eris.apache.org (Postfix, from userid 65534) id 84ACF1A981A; Thu, 24 Aug 2006 03:20:59 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r434368 - /httpd/apreq/trunk/build/version_check.pl Date: Thu, 24 Aug 2006 10:20:58 -0000 To: apreq-cvs@httpd.apache.org From: pgollucci@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20060824102059.84ACF1A981A@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Author: pgollucci Date: Thu Aug 24 03:20:49 2006 New Revision: 434368 URL: http://svn.apache.org/viewvc?rev=434368&view=rev Log: at the moment autconf 2.60 breaks glue/perl/Makefile.PL messes with autoconf internals, reading config.status and trying to read PACKAGE_VERSION (among other variables) from there. For some reason, "|#_!!_#|" is prepended there. Then, gcc is called with -DVERSION=\"|#_!!_#|2.08\" -- pipes and exclamation marks (and probably hashes) are interpreted by shell. Similar issue has been discussed on the bug-autoconf list: http://lists.gnu.org/archive/html/bug-autoconf/2006-06/msg00127.html Reported by: pgollucci Verified by: Radoslaw Zielinski Modified: httpd/apreq/trunk/build/version_check.pl Modified: httpd/apreq/trunk/build/version_check.pl URL: http://svn.apache.org/viewvc/httpd/apreq/trunk/build/version_check.pl?rev=434368&r1=434367&r2=434368&view=diff ============================================================================== --- httpd/apreq/trunk/build/version_check.pl (original) +++ httpd/apreq/trunk/build/version_check.pl Thu Aug 24 03:20:49 2006 @@ -47,7 +47,7 @@ my %svn = ( libtool => { version => "1.4.3", test => \&gnu_version }, - autoconf => { version => "2.53", test => \&gnu_version }, + autoconf => { version => "2.53", test => \&gnu_version, broken_version => '2.60' }, automake => { version => "1.6.1", test => \&gnu_version }, doxygen => { version => "1.2", test => \&gnu_version, broken_version => '1.4.5' }, perl => { version => "5.6.1", test => \&gnu_version },