1
0
Fork 0

Merge pull request #5 from Aldekein/patch-1

Update config.m4 for PHP 5.5 on AWS
This commit is contained in:
Anton Batenev 2014-06-16 15:04:32 +04:00
commit f044b3401a

View file

@ -20,6 +20,8 @@ if test "$PHP_PDO_SQLCIPHER" != "no"; then
pdo_inc_path=$prefix/include/php/ext pdo_inc_path=$prefix/include/php/ext
elif test -f $prefix/include/php5/ext/pdo/php_pdo_driver.h; then elif test -f $prefix/include/php5/ext/pdo/php_pdo_driver.h; then
pdo_inc_path=$prefix/include/php5/ext pdo_inc_path=$prefix/include/php5/ext
elif test -f $prefix/include/php/5.5/php/ext/pdo/php_pdo_driver.h; then
pdo_inc_path=$prefix/include/php/5.5/php/ext
else else
AC_MSG_ERROR([Cannot find php_pdo_driver.h.]) AC_MSG_ERROR([Cannot find php_pdo_driver.h.])
fi fi