Added PHP7 compilation support
This commit is contained in:
parent
5cb3be32c4
commit
bcec9ca73f
2 changed files with 4 additions and 2 deletions
4
build.sh
4
build.sh
|
|
@ -38,8 +38,8 @@ if [ "x${PHP_CONFIG}" = "x" ]; then
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# 5.3.3-7+squeeze13
|
|
||||||
PHP_VER=$(${PHP_CONFIG} --version | cut -d '-' -f 1)
|
PHP_VER=$(${PHP_CONFIG} --version | cut -d '-' -f 1)
|
||||||
|
PHP_MAJOR_VER=${PHP_VER:0:1}
|
||||||
|
|
||||||
if [ "x${PHP_VER}" = "x" ]; then
|
if [ "x${PHP_VER}" = "x" ]; then
|
||||||
echo "Error: unknown php version"
|
echo "Error: unknown php version"
|
||||||
|
|
@ -50,7 +50,7 @@ PHP_SRC="php-${PHP_VER}"
|
||||||
PHP_TGZ="${PHP_SRC}.tar.gz"
|
PHP_TGZ="${PHP_SRC}.tar.gz"
|
||||||
|
|
||||||
if [ ! -f "${PHP_TGZ}" ]; then
|
if [ ! -f "${PHP_TGZ}" ]; then
|
||||||
wget "http://museum.php.net/php5/${PHP_TGZ}"
|
wget "http://museum.php.net/php${PHP_MAJOR_VER}/${PHP_TGZ}"
|
||||||
if [ $? -ne 0 ]; then
|
if [ $? -ne 0 ]; then
|
||||||
# newest version?
|
# newest version?
|
||||||
wget -O "${PHP_TGZ}" "http://ru2.php.net/get/${PHP_TGZ}/from/this/mirror"
|
wget -O "${PHP_TGZ}" "http://ru2.php.net/get/${PHP_TGZ}/from/this/mirror"
|
||||||
|
|
|
||||||
|
|
@ -16,6 +16,8 @@ if test "$PHP_PDO_SQLCIPHER" != "no"; then
|
||||||
pdo_inc_path=$abs_srcdir/ext
|
pdo_inc_path=$abs_srcdir/ext
|
||||||
elif test -f $abs_srcdir/ext/pdo/php_pdo_driver.h; then
|
elif test -f $abs_srcdir/ext/pdo/php_pdo_driver.h; then
|
||||||
pdo_inc_path=$abs_srcdir/ext
|
pdo_inc_path=$abs_srcdir/ext
|
||||||
|
elif test -f $phpincludedir/ext/pdo/php_pdo_driver.h; then
|
||||||
|
pdo_inc_path=$phpincludedir/ext
|
||||||
elif test -f $prefix/include/php/ext/pdo/php_pdo_driver.h; then
|
elif test -f $prefix/include/php/ext/pdo/php_pdo_driver.h; 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
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue