@@ -1688,7 +1688,7 @@ dnl PHP_BROKEN_GLIBC_FOPEN_APPEND
1688
1688
dnl
1689
1689
AC_DEFUN ( [ PHP_BROKEN_GLIBC_FOPEN_APPEND] , [
1690
1690
AC_MSG_CHECKING ( [ for broken libc stdio] )
1691
- AC_CACHE_VAL ( have_broken_glibc_fopen_append ,[
1691
+ AC_CACHE_VAL ( _cv_have_broken_glibc_fopen_append ,[
1692
1692
AC_TRY_RUN ( [
1693
1693
#include <stdio.h>
1694
1694
int main(int argc, char *argv[ ] )
@@ -1714,20 +1714,20 @@ int main(int argc, char *argv[])
1714
1714
return 0;
1715
1715
}
1716
1716
] ,
1717
- [ have_broken_glibc_fopen_append =no] ,
1718
- [ have_broken_glibc_fopen_append =yes ] ,
1717
+ [ _cv_have_broken_glibc_fopen_append =no] ,
1718
+ [ _cv_have_broken_glibc_fopen_append =yes ] ,
1719
1719
AC_TRY_COMPILE ( [
1720
1720
#include <features.h>
1721
1721
] ,[
1722
1722
#if !__GLIBC_PREREQ(2,2)
1723
1723
choke me
1724
1724
#endif
1725
1725
] ,
1726
- [ have_broken_glibc_fopen_append =yes] ,
1727
- [ have_broken_glibc_fopen_append =no ] )
1726
+ [ _cv_have_broken_glibc_fopen_append =yes] ,
1727
+ [ _cv_have_broken_glibc_fopen_append =no ] )
1728
1728
) ] )
1729
1729
1730
- if test "$have_broken_glibc_fopen_append " = "yes"; then
1730
+ if test "$_cv_have_broken_glibc_fopen_append " = "yes"; then
1731
1731
AC_MSG_RESULT ( yes )
1732
1732
AC_DEFINE ( HAVE_BROKEN_GLIBC_FOPEN_APPEND ,1 , [ Define if your glibc borks on fopen with mode a+] )
1733
1733
else
@@ -2736,17 +2736,17 @@ dnl
2736
2736
dnl PHP_CHECK_PDO_INCLUDES([found [, not-found]])
2737
2737
dnl
2738
2738
AC_DEFUN ( [ PHP_CHECK_PDO_INCLUDES] ,[
2739
- AC_CACHE_CHECK ( [ for PDO includes] , pdo_inc_path , [
2739
+ AC_CACHE_CHECK ( [ for PDO includes] , pdo_cv_inc_path , [
2740
2740
AC_MSG_CHECKING ( [ for PDO includes] )
2741
2741
if test -f $abs_srcdir/include/php/ext/pdo/php_pdo_driver.h; then
2742
- pdo_inc_path =$abs_srcdir/ext
2742
+ pdo_cv_inc_path =$abs_srcdir/ext
2743
2743
elif test -f $abs_srcdir/ext/pdo/php_pdo_driver.h; then
2744
- pdo_inc_path =$abs_srcdir/ext
2744
+ pdo_cv_inc_path =$abs_srcdir/ext
2745
2745
elif test -f $prefix/include/php/ext/pdo/php_pdo_driver.h; then
2746
- pdo_inc_path =$prefix/include/php/ext
2746
+ pdo_cv_inc_path =$prefix/include/php/ext
2747
2747
fi
2748
2748
] )
2749
- if test -n "$pdo_inc_path "; then
2749
+ if test -n "$pdo_cv_inc_path "; then
2750
2750
ifelse ( [ $1 ] ,[ ] ,: ,[ $1 ] )
2751
2751
else
2752
2752
ifelse ( [ $2 ] ,[ ] ,[ AC_MSG_ERROR ( [ Cannot find php_pdo_driver.h.] ) ] ,[ $2 ] )
0 commit comments