File: //opt/ecp-php56/bin/php-config
#! /bin/sh
SED="/usr/bin/sed"
prefix="/opt/ecp-php56"
datarootdir="/opt/ecp-php56/php"
exec_prefix="${prefix}"
version="5.6.40"
vernum="50640"
include_dir="${prefix}/include/php"
includes="-I$include_dir -I$include_dir/main -I$include_dir/TSRM -I$include_dir/Zend -I$include_dir/ext -I$include_dir/ext/date/lib"
ldflags=" -L/usr/lib/x86_64-linux-gnu/mit-krb5 -L/opt/openssl-1.1.1/lib"
libs="-lcrypt -lc-client -lcrypto -lssl -lcrypto -lz -lexslt -ltidy -lcrypt -ledit -lncurses -lrt -lmcrypt -lltdl -lcrypto -lssl -lcrypto -lcrypt -lpam -lgmp -lX11 -lXpm -lpng -lz -ljpeg -lcrypto -lssl -lcrypto -lcurl -lz -lcrypto -lssl -lcrypto -lrt -lm -lxml2 -lgssapi_krb5 -lkrb5 -lk5crypto -lcom_err -lcurl -lxml2 -lfreetype -lgssapi_krb5 -lkrb5 -lk5crypto -lcom_err -lxml2 -lxml2 -lcrypt -lxml2 -lxml2 -lxml2 -lxml2 -lxslt -lxml2 -lcrypt "
extension_dir='/opt/ecp-php56/lib/php/extensions/no-debug-non-zts-20131226'
man_dir=`eval echo ${datarootdir}/man`
program_prefix=""
program_suffix=""
exe_extension=""
php_cli_binary=NONE
php_cgi_binary=NONE
configure_options=" '--prefix=/opt/ecp-php56' '--with-config-file-path=/usr/local/lib' '--enable-fpm' '--with-litespeed' '--enable-mysqlnd' '--with-mysqli' '--with-mhash' '--enable-ftp' '--enable-mbstring' '--with-password-argon2' '--with-sodium' '--with-pdo-sqlite' '--with-pdo-mysql' '--with-sqlite3' '--with-curl' '--with-libedit' '--with-zlib' '--with-pear' '--enable-exif' '--with-tidy' '--with-xsl' '--enable-bcmath' '--with-xmlrpc' '--enable-soap' '--with-gettext' '--with-imap' '--with-kerberos' '--with-imap-ssl' '--enable-calendar' '--with-gd' '--with-jpeg-dir=/usr/include' '--with-freetype-dir=/usr/include/freetype2' '--with-xpm-dir=/usr/include' '--enable-zip' '--with-gmp' '--enable-pcntl' '--enable-sockets' '--with-openssl=/opt/openssl-1.1.1' '--with-openssl-dir=/opt/openssl-1.1.1' '--with-mysql=mysqlnd' '--with-mcrypt'"
php_sapis=" cli fpm litespeed cgi"
# Set php_cli_binary and php_cgi_binary if available
for sapi in $php_sapis; do
case $sapi in
cli)
php_cli_binary="${exec_prefix}/bin/${program_prefix}php${program_suffix}${exe_extension}"
;;
cgi)
php_cgi_binary="${exec_prefix}/bin/${program_prefix}php-cgi${program_suffix}${exe_extension}"
;;
esac
done
# Determine which (if any) php binary is available
if test "$php_cli_binary" != "NONE"; then
php_binary="$php_cli_binary"
else
php_binary="$php_cgi_binary"
fi
# Remove quotes
configure_options=`echo $configure_options | $SED -e "s#'##g"`
case "$1" in
--prefix)
echo $prefix;;
--includes)
echo $includes;;
--ldflags)
echo $ldflags;;
--libs)
echo $libs;;
--extension-dir)
echo $extension_dir;;
--include-dir)
echo $include_dir;;
--php-binary)
echo $php_binary;;
--php-sapis)
echo $php_sapis;;
--configure-options)
echo $configure_options;;
--man-dir)
echo $man_dir;;
--version)
echo $version;;
--vernum)
echo $vernum;;
*)
cat << EOF
Usage: $0 [OPTION]
Options:
--prefix [$prefix]
--includes [$includes]
--ldflags [$ldflags]
--libs [$libs]
--extension-dir [$extension_dir]
--include-dir [$include_dir]
--man-dir [$man_dir]
--php-binary [$php_binary]
--php-sapis [$php_sapis]
--configure-options [$configure_options]
--version [$version]
--vernum [$vernum]
EOF
exit 1;;
esac
exit 0