Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:9696 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 93350 invoked by uid 1010); 6 May 2004 22:47:54 -0000 Delivered-To: ezmlm-scan-internals@lists.php.net Delivered-To: ezmlm-internals@lists.php.net Received: (qmail 93325 invoked from network); 6 May 2004 22:47:53 -0000 Received: from unknown (HELO mx2.redhat.com) (66.187.237.31) by pb1.pair.com with SMTP; 6 May 2004 22:47:53 -0000 Received: from int-mx1.corp.redhat.com (int-mx1.corp.redhat.com [172.16.52.254]) by mx2.redhat.com (8.12.10/8.12.10) with ESMTP id i46MklbW012469 for ; Thu, 6 May 2004 18:46:48 -0400 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 i46Mkjv23078 for ; Thu, 6 May 2004 18:46:46 -0400 Received: from radish.cambridge.redhat.com (localhost.localdomain [127.0.0.1]) by radish.cambridge.redhat.com (8.12.10/8.12.7) with ESMTP id i46Mkfjb012673 for ; Thu, 6 May 2004 23:46:41 +0100 Received: (from jorton@localhost) by radish.cambridge.redhat.com (8.12.10/8.12.10/Submit) id i46Mkcsd012672 for internals@lists.php.net; Thu, 6 May 2004 23:46:38 +0100 Date: Thu, 6 May 2004 23:46:38 +0100 To: internals@lists.php.net Message-ID: <20040506224638.GA12665@redhat.com> Mail-Followup-To: internals@lists.php.net Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline User-Agent: Mutt/1.4.1i Subject: [PHP-DEV] [PATCH] fix #27791 From: jorton@redhat.com (Joe Orton) [resend] It's necessary to pick up EXTRA_CFLAGS and friends when building against httpd-2.0 HEAD due to LFS support in APR. Index: sapi/apache2handler/config.m4 =================================================================== RCS file: /repository/php-src/sapi/apache2handler/config.m4,v retrieving revision 1.1.2.7 diff -u -r1.1.2.7 config.m4 --- sapi/apache2handler/config.m4 16 Jul 2003 05:46:46 -0000 1.1.2.7 +++ sapi/apache2handler/config.m4 22 Apr 2004 20:46:58 -0000 @@ -34,7 +34,10 @@ APXS_INCLUDEDIR=`$APXS -q INCLUDEDIR` APXS_BINDIR=`$APXS -q BINDIR` APXS_HTTPD=`$APXS -q SBINDIR`/`$APXS -q TARGET` - APXS_CFLAGS=`$APXS -q CFLAGS` + APXS_CFLAGS= + for flag in CFLAGS EXTRA_CFLAGS EXTRA_CPPFLAGS NOTEST_CFLAGS; do + APXS_CFLAGS="$APXS_CFLAGS `$APXS -q $flag`" + done APXS_MPM=`$APXS -q MPM_NAME` APU_BINDIR=`$APXS -q APU_BINDIR` APR_BINDIR=`$APXS -q APR_BINDIR` -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php