Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:16036 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 9041 invoked by uid 1010); 19 Apr 2005 21:13:20 -0000 Delivered-To: ezmlm-scan-internals@lists.php.net Delivered-To: ezmlm-internals@lists.php.net Received: (qmail 9025 invoked from network); 19 Apr 2005 21:13:20 -0000 Received: from unknown (HELO pb1.pair.com) (127.0.0.1) by localhost with SMTP; 19 Apr 2005 21:13:20 -0000 X-Host-Fingerprint: 204.11.219.140 lt1.firehawksystems.com Linux 2.4/2.6 Received: from ([204.11.219.140:46736] helo=lt1.firehawksystems.com) by pb1.pair.com (ecelerity 1.2.12rc1 r(5476:5477)) with SMTP id FE/E4-45122-E6475624 for ; Tue, 19 Apr 2005 17:13:18 -0400 Received: from [10.0.0.2] (adsl-68-248-163-153.dsl.ipltin.ameritech.net [68.248.163.153]) (authenticated bits=0) by lt1.firehawksystems.com (8.13.3/8.13.3) with ESMTP id j3JLCqTd010227 (version=TLSv1/SSLv3 cipher=RC4-SHA bits=128 verify=NO) for ; Tue, 19 Apr 2005 14:12:53 -0700 Mime-Version: 1.0 (Apple Message framework v622) To: internals@lists.php.net Message-ID: <9362f0145eb08a0ee9f30fb7d14fa905@firehawksystems.com> Content-Type: multipart/mixed; boundary=Apple-Mail-3-346498501 Date: Tue, 19 Apr 2005 16:12:48 -0500 X-Mailer: Apple Mail (2.622) X-Virus-Scanned: ClamAV 0.83/841/Tue Apr 19 09:44:10 2005 on lt1 X-Virus-Status: Clean Subject: Allow .cc files for shared extensions From: list@firehawksystems.com ("Brian J. France") --Apple-Mail-3-346498501 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset=US-ASCII; format=flowed Anybody see a problem with this patch that allows .cc files in shared extensions. If not I will check it into all branches. Thanks, Brian --Apple-Mail-3-346498501 Content-Transfer-Encoding: 7bit Content-Type: text/plain; x-unix-mode=0644; name="diff.txt" Content-Disposition: attachment; filename=diff.txt Index: acinclude.m4 =================================================================== RCS file: /repository/php-src/acinclude.m4,v retrieving revision 1.298 diff -u -p -r1.298 acinclude.m4 --- acinclude.m4 7 Apr 2005 20:39:02 -0000 1.298 +++ acinclude.m4 19 Apr 2005 21:09:23 -0000 @@ -259,6 +259,7 @@ dnl choose the right compiler/flags/etc. *.s[)] ac_comp="$b_c_pre $3 $ac_inc $b_c_meta -c $ac_srcdir$ac_src -o $ac_bdir$ac_obj.$b_lo $6$b_c_post" ;; *.S[)] ac_comp="$b_c_pre $3 $ac_inc $b_c_meta -c $ac_srcdir$ac_src -o $ac_bdir$ac_obj.$b_lo $6$b_c_post" ;; *.cpp[)] ac_comp="$b_cxx_pre $3 $ac_inc $b_cxx_meta -c $ac_srcdir$ac_src -o $ac_bdir$ac_obj.$b_lo $6$b_cxx_post" ;; + *.cc[)] ac_comp="$b_cxx_pre $3 $ac_inc $b_cxx_meta -c $ac_srcdir$ac_src -o $ac_bdir$ac_obj.$b_lo $6$b_cxx_post" ;; esac dnl create a rule for the object/source combo --Apple-Mail-3-346498501--