bfrance         Wed Apr 20 16:51:47 2005 EDT

  Modified files:              (Branch: PHP_4_3)
    /php-src    NEWS acinclude.m4 
  Log:
  MFH: Added support for .cc files in extensions.
  
  
http://cvs.php.net/diff.php/php-src/NEWS?r1=1.1247.2.881&r2=1.1247.2.882&ty=u
Index: php-src/NEWS
diff -u php-src/NEWS:1.1247.2.881 php-src/NEWS:1.1247.2.882
--- php-src/NEWS:1.1247.2.881   Sun Apr 17 09:27:17 2005
+++ php-src/NEWS        Wed Apr 20 16:51:45 2005
@@ -1,6 +1,7 @@
 PHP 4                                                                      NEWS
 |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
 ?? ??? 20??, Version 4.?.?
+- Added support for .cc files in extensions. (Brian)
 - Added the sorting flag SORT_LOCALE_STRING to the sort() functions which makes
   them sort based on the current locale. (Derick)
 - Changed sha1_file() and md5_file() functions to use streams instead of 
http://cvs.php.net/diff.php/php-src/acinclude.m4?r1=1.218.2.48&r2=1.218.2.49&ty=u
Index: php-src/acinclude.m4
diff -u php-src/acinclude.m4:1.218.2.48 php-src/acinclude.m4:1.218.2.49
--- php-src/acinclude.m4:1.218.2.48     Tue Jan 25 08:03:06 2005
+++ php-src/acinclude.m4        Wed Apr 20 16:51:45 2005
@@ -1,4 +1,4 @@
-dnl $Id: acinclude.m4,v 1.218.2.48 2005/01/25 13:03:06 sniper Exp $ -*- 
autoconf -*-
+dnl $Id: acinclude.m4,v 1.218.2.49 2005/04/20 20:51:45 bfrance Exp $ -*- 
autoconf -*-
 dnl
 dnl This file contains local autoconf functions.
 
@@ -143,7 +143,7 @@
 dnl choose the right compiler/flags/etc. for the source-file
       case $ac_src in
          *.c[)] 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" ;;
+         *.cpp|*.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

-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to