diff options
| -rw-r--r-- | NEWS | 1 | ||||
| -rw-r--r-- | acinclude.m4 | 2 |
2 files changed, 2 insertions, 1 deletions
@@ -31,6 +31,7 @@ PHP NEWS . 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 diff --git a/acinclude.m4 b/acinclude.m4 index 2500239fa1..27525bea14 100644 --- a/acinclude.m4 +++ b/acinclude.m4 @@ -258,7 +258,7 @@ dnl choose the right compiler/flags/etc. for the source-file *.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 |
