summaryrefslogtreecommitdiff
path: root/acinclude.m4
diff options
context:
space:
mode:
authorRasmus Lerdorf <rasmus@php.net>2011-05-15 05:49:34 +0000
committerRasmus Lerdorf <rasmus@php.net>2011-05-15 05:49:34 +0000
commitd257aa42ff461d77296ef889a1173c570906972b (patch)
tree354e5f8963960426b160c2b9006de25dbe268213 /acinclude.m4
parent78a15091f9efcb60c383b317d03e95756bd677a0 (diff)
downloadphp-git-d257aa42ff461d77296ef889a1173c570906972b.tar.gz
Oops, can't cache it here because it won't work
in autoconf2.13 and we still support that version in this branch
Diffstat (limited to 'acinclude.m4')
-rw-r--r--acinclude.m410
1 files changed, 5 insertions, 5 deletions
diff --git a/acinclude.m4 b/acinclude.m4
index 69d65e3ec0..811249bcfb 100644
--- a/acinclude.m4
+++ b/acinclude.m4
@@ -2745,17 +2745,17 @@ dnl
dnl PHP_CHECK_PDO_INCLUDES([found [, not-found]])
dnl
AC_DEFUN([PHP_CHECK_PDO_INCLUDES],[
- AC_CACHE_CHECK([for PDO includes], pdo_cv_inc_path, [
+ AC_CACHE_CHECK([for PDO includes], pdo_inc_path, [
AC_MSG_CHECKING([for PDO includes])
if test -f $abs_srcdir/include/php/ext/pdo/php_pdo_driver.h; then
- pdo_cv_inc_path=$abs_srcdir/ext
+ pdo_inc_path=$abs_srcdir/ext
elif test -f $abs_srcdir/ext/pdo/php_pdo_driver.h; then
- pdo_cv_inc_path=$abs_srcdir/ext
+ pdo_inc_path=$abs_srcdir/ext
elif test -f $prefix/include/php/ext/pdo/php_pdo_driver.h; then
- pdo_cv_inc_path=$prefix/include/php/ext
+ pdo_inc_path=$prefix/include/php/ext
fi
])
- if test -n "$pdo_cv_inc_path"; then
+ if test -n "$pdo_inc_path"; then
ifelse([$1],[],:,[$1])
else
ifelse([$2],[],[AC_MSG_ERROR([Cannot find php_pdo_driver.h.])],[$2])