99 lines
3.5 KiB
Plaintext
99 lines
3.5 KiB
Plaintext
|
#! /bin/sh
|
||
|
|
||
|
SED="/usr/bin/sed"
|
||
|
prefix="/home/sanek/.phpbrew/php/php-8.3.11"
|
||
|
datarootdir="/home/sanek/.phpbrew/php/php-8.3.11/php"
|
||
|
exec_prefix="${prefix}"
|
||
|
version="8.3.11"
|
||
|
vernum="80311"
|
||
|
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=""
|
||
|
libs=" -lreadline -lncurses -lrt -lbz2 -lrt -lm -lxml2 -lssl -lcrypto -lz -lcurl -lssl -lcrypto -lxml2 -lonig -lxml2 -lxml2 -lxml2 -lxml2 -lxslt -lxml2 -lexslt -lxslt -lxml2 -lzip "
|
||
|
extension_dir='/home/sanek/.phpbrew/php/php-8.3.11/lib/php/extensions/no-debug-non-zts-20230831'
|
||
|
man_dir=`eval echo ${datarootdir}/man`
|
||
|
program_prefix=""
|
||
|
program_suffix=""
|
||
|
exe_extension=""
|
||
|
php_cli_binary=NONE
|
||
|
php_cgi_binary=NONE
|
||
|
configure_options=" '--cache-file=/home/sanek/.phpbrew/cache/config.cache' '--prefix=/home/sanek/.phpbrew/php/php-8.3.11' '--disable-all' '--enable-phar' '--enable-session' '--enable-short-tags' '--enable-tokenizer' '--with-zlib=/usr' '--with-libdir=lib/x86_64-linux-gnu' '--enable-dom' '--with-libxml' '--enable-simplexml' '--enable-xml' '--enable-xmlreader' '--enable-xmlwriter' '--with-xsl' '--enable-opcache' '--enable-bcmath' '--with-bz2=/usr' '--enable-calendar' '--enable-cli' '--enable-ctype' '--enable-fileinfo' '--enable-filter' '--enable-shmop' '--enable-sysvsem' '--enable-sysvshm' '--enable-sysvmsg' '--enable-json' '--enable-mbregex' '--enable-mbstring' '--with-mhash' '--enable-pcntl' '--enable-pdo' '--with-pear=/home/sanek/.phpbrew/php/php-8.3.11/lib/php/pear' '--enable-posix' '--with-readline=/usr' '--enable-sockets' '--with-curl' '--with-openssl' '--with-zip' '--with-config-file-path=/home/sanek/.phpbrew/php/php-8.3.11/etc/cli' '--with-config-file-scan-dir=/home/sanek/.phpbrew/php/php-8.3.11/var/db/cli' 'PKG_CONFIG_PATH=/usr/lib/pkgconfig'"
|
||
|
php_sapis=" cli phpdbg cgi"
|
||
|
ini_dir="/home/sanek/.phpbrew/php/php-8.3.11/var/db/cli"
|
||
|
ini_path="/home/sanek/.phpbrew/php/php-8.3.11/etc/cli"
|
||
|
|
||
|
# 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;;
|
||
|
--ini-path)
|
||
|
echo $ini_path;;
|
||
|
--ini-dir)
|
||
|
echo $ini_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]
|
||
|
--ini-path [$ini_path]
|
||
|
--ini-dir [$ini_dir]
|
||
|
--configure-options [$configure_options]
|
||
|
--version [$version]
|
||
|
--vernum [$vernum]
|
||
|
EOF
|
||
|
exit 1;;
|
||
|
esac
|
||
|
|
||
|
exit 0
|