mirror of
https://github.com/php/php-src.git
synced 2024-11-23 18:04:36 +08:00
Added support for .cc files in extensions.
This commit is contained in:
parent
2bcae57b31
commit
e836164570
1
NEWS
1
NEWS
@ -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
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user