PHP: added "--lib-static" configure option.
The libraries returned by "php-config --libs" are required to link with static libphp.a. Dynamic libphp.so contains the required libraries names.
This commit is contained in:
@@ -17,6 +17,7 @@ for nxt_option; do
|
|||||||
--config=*) NXT_PHP_CONFIG="$value" ;;
|
--config=*) NXT_PHP_CONFIG="$value" ;;
|
||||||
--module=*) NXT_PHP_MODULE="$value" ;;
|
--module=*) NXT_PHP_MODULE="$value" ;;
|
||||||
--lib-path=*) NXT_PHP_LIB_PATH="$value" ;;
|
--lib-path=*) NXT_PHP_LIB_PATH="$value" ;;
|
||||||
|
--lib-static) NXT_PHP_LIB_STATIC=yes ;;
|
||||||
|
|
||||||
--help)
|
--help)
|
||||||
cat << END
|
cat << END
|
||||||
@@ -24,6 +25,7 @@ for nxt_option; do
|
|||||||
--config=FILE set php-config filename
|
--config=FILE set php-config filename
|
||||||
--module=NAME set unit php module name
|
--module=NAME set unit php module name
|
||||||
--lib-path=DIRECTORY set directory path to libphp.so library
|
--lib-path=DIRECTORY set directory path to libphp.so library
|
||||||
|
--lib-static enable linking with static libphp.a library
|
||||||
|
|
||||||
END
|
END
|
||||||
exit 0
|
exit 0
|
||||||
@@ -55,6 +57,7 @@ NXT_PHP_CONFIG=${NXT_PHP_CONFIG=php-config}
|
|||||||
NXT_PHP=${NXT_PHP_CONFIG%-config*}
|
NXT_PHP=${NXT_PHP_CONFIG%-config*}
|
||||||
NXT_PHP_MODULE=${NXT_PHP_MODULE=${NXT_PHP##*/}}
|
NXT_PHP_MODULE=${NXT_PHP_MODULE=${NXT_PHP##*/}}
|
||||||
NXT_PHP_LIB_PATH=${NXT_PHP_LIB_PATH=}
|
NXT_PHP_LIB_PATH=${NXT_PHP_LIB_PATH=}
|
||||||
|
NXT_PHP_LIB_STATIC=${NXT_PHP_LIB_STATIC=no}
|
||||||
|
|
||||||
|
|
||||||
$echo "configuring PHP module"
|
$echo "configuring PHP module"
|
||||||
@@ -76,6 +79,10 @@ if /bin/sh -c "${NXT_PHP_CONFIG} --version" >> $NXT_AUTOCONF_ERR 2>&1; then
|
|||||||
NXT_PHP_INCLUDE="`${NXT_PHP_CONFIG} --includes`"
|
NXT_PHP_INCLUDE="`${NXT_PHP_CONFIG} --includes`"
|
||||||
NXT_PHP_LIB="-lphp${NXT_PHP_VERSION%%.*}"
|
NXT_PHP_LIB="-lphp${NXT_PHP_VERSION%%.*}"
|
||||||
|
|
||||||
|
if [ $NXT_PHP_LIB_STATIC = yes ]; then
|
||||||
|
NXT_PHP_LIB="${NXT_PHP_LIB} `${NXT_PHP_CONFIG} --libs`"
|
||||||
|
fi
|
||||||
|
|
||||||
if [ "$NXT_PHP_LIB_PATH" != "" ]; then
|
if [ "$NXT_PHP_LIB_PATH" != "" ]; then
|
||||||
# "php-config --ldflags" does not contain path to libphp.
|
# "php-config --ldflags" does not contain path to libphp.
|
||||||
NXT_PHP_LDFLAGS="-L${NXT_PHP_LIB_PATH} -Wl,-rpath ${NXT_PHP_LIB_PATH}"
|
NXT_PHP_LDFLAGS="-L${NXT_PHP_LIB_PATH} -Wl,-rpath ${NXT_PHP_LIB_PATH}"
|
||||||
|
|||||||
Reference in New Issue
Block a user