bfrance         Wed Apr 20 16:48:20 2005 EDT

  Modified files:              
    /php-src    NEWS acinclude.m4 
  Log:
  Added support for .cc files in extensions.
  
  
http://cvs.php.net/diff.php/php-src/NEWS?r1=1.1875&r2=1.1876&ty=u
Index: php-src/NEWS
diff -u php-src/NEWS:1.1875 php-src/NEWS:1.1876
--- php-src/NEWS:1.1875 Sun Apr 17 12:11:49 2005
+++ php-src/NEWS        Wed Apr 20 16:48:19 2005
@@ -31,6 +31,7 @@
   . added class File
   . added possibility to use a string with class_parents() and
     class_implements(). (Andrey)
+- Added support for .cc files in extensions. (Brian)
 - Added imageconvolution() function which can be used to apply a custom 3x3
   matrix convolution to an image. (Pierre)
 - Added optional first parameter to XsltProcessor::registerPHPFunctions to 
only  
http://cvs.php.net/diff.php/php-src/acinclude.m4?r1=1.298&r2=1.299&ty=u
Index: php-src/acinclude.m4
diff -u php-src/acinclude.m4:1.298 php-src/acinclude.m4:1.299
--- php-src/acinclude.m4:1.298  Thu Apr  7 16:39:02 2005
+++ php-src/acinclude.m4        Wed Apr 20 16:48:19 2005
@@ -1,5 +1,5 @@
 dnl
-dnl $Id: acinclude.m4,v 1.298 2005/04/07 20:39:02 sniper Exp $
+dnl $Id: acinclude.m4,v 1.299 2005/04/20 20:48:19 bfrance Exp $
 dnl
 dnl This file contains local autoconf functions.
 dnl
@@ -258,7 +258,7 @@
          *.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" ;;
          *.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" ;;
+         *.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