PHP: building with PHP 8 (development version).

This commit is contained in:
Remi Collet
2020-05-20 11:18:03 +03:00
parent d0de6df839
commit 140b81208e
2 changed files with 13 additions and 1 deletions

View File

@@ -100,7 +100,11 @@ if /bin/sh -c "${NXT_PHP_CONFIG} --version" >> $NXT_AUTOCONF_ERR 2>&1; then
`${NXT_PHP_CONFIG} --libs`"
else
NXT_PHP_LIB="-lphp${NXT_PHP_VERSION%%.*}"
if [ $NXT_PHP_MAJOR_VERSION -ge 8 ]; then
NXT_PHP_LIB="-lphp"
else
NXT_PHP_LIB="-lphp${NXT_PHP_VERSION%%.*}"
fi
if [ "$NXT_PHP_LIB_PATH" != "" ]; then
# "php-config --ldflags" does not contain path to libphp, but