| Server IP : 103.75.185.95 / Your IP : 216.73.217.162 Web Server : nginx/1.30.0 System : Linux cs-linux-20260509085757017 6.1.0-49-cloud-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.174-1 (2026-05-26) x86_64 User : cuuhootoxema ( 1215) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /proc/thread-self/root/opt/php81/bin/ |
Upload File : |
#! /bin/sh
SED="/usr/bin/sed"
prefix="/opt/php81"
datarootdir="/opt/php81/php"
exec_prefix="${prefix}"
version="8.1.31"
vernum="80131"
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=" -lpthread -lpthread -L/usr/lib/x86_64-linux-gnu/mit-krb5"
libs="-lcrypt -lc-client -lrt -lstdc++ -lcrypt -lpam -lgomp -lrt -lm -lsystemd -lxml2 -lgssapi_krb5 -lkrb5 -lk5crypto -lcom_err -lssl -lcrypto -lsqlite3 -lz -lxml2 -lgssapi_krb5 -lkrb5 -lk5crypto -lcom_err -lssl -lcrypto -lsqlite3 -lxml2 -lxml2 -lxml2 -lxml2 -lz -lssl -lcrypto -lcrypt "
extension_dir='/opt/php81/lib/php/extensions/no-debug-non-zts-20210902'
man_dir=`eval echo ${datarootdir}/man`
program_prefix=""
program_suffix=""
exe_extension=""
php_cli_binary=NONE
php_cgi_binary=NONE
configure_options=" '--prefix=/opt/php81' '--with-config-file-path=/opt/php81/etc/' '--with-config-file-scan-dir=/opt/php81/conf.d' '--with-pear=/opt/php81' '--disable-rpath' '--enable-bcmath=shared,/usr' '--enable-calendar' '--enable-cgi' '--enable-cli' '--enable-dba=shared' '--enable-exif=shared,/usr' '--enable-fpm' '--enable-ftp=shared' '--enable-intl=shared,/usr' '--enable-mbregex' '--enable-mbstring=shared,/usr' '--enable-mailparse=shared,/usr' '--enable-opcache=shared,/usr' '--enable-pcntl=shared,/usr' '--enable-lz4=shared' '--enable-shmop=shared,/usr' '--enable-soap=shared,/usr' '--enable-sockets=shared,/usr' '--enable-sysvmsg' '--enable-sysvsem' '--enable-sysvshm' '--with-zip=shared,/usr' '--disable-debug' '--with-bz2=shared,/usr' '--with-curl=shared,/usr/bin' '--with-fpm-systemd' '--with-freetype' '--with-gearman=shared,/usr' '--with-geoip=shared,/usr' '--enable-gd=shared,/usr' '--with-external-gd' '--with-enchant=shared' '--with-gettext=shared,/usr' '--with-gmagick=shared,/usr' '--with-gmp=shared,/usr' '--with-imagick=shared,/usr' '--with-imap=/usr' '--with-imap-ssl' '--with-jpeg' '--with-kerberos' '--with-ldap=shared' '--with-lz4-includedir=/usr' '--with-mhash' '--with-mysqli=shared,mysqlnd' '--with-mcrypt=shared' '--with-mysql-sock=/var/run/mysqld/mysqld.sock' '--with-openssl' '--with-pdo-dblib=shared' '--with-pdo-firebird=shared' '--with-pdo-mysql=shared,mysqlnd' '--with-pdo-pgsql=shared,/usr' '--with-pdo-sqlite' '--with-pgsql=shared' '--with-pspell=shared' '--with-snmp=shared' '--with-ssh2=shared,/usr' '--with-system-tzdata' '--with-sodium=shared' '--with-tidy=shared' '--with-xmlrpc=shared' '--with-xsl=shared,/usr/include/libxslt' '--with-yaml=shared,/usr' '--with-zlib' '--with-zlib-dir' '--with-zmq=shared' '--with-webp' '--with-pcre-jit' '--with-msgpack=shared,/usr' '--enable-igbinary=shared,/usr' '--enable-memcache=shared,/usr' '--with-mongodb-ssl=openssl' '--enable-apcu=shared,/usr' '--enable-mongodb=shared,/usr' '--enable-redis=shared,/usr'"
php_sapis=" cli fpm phpdbg cgi"
ini_dir="/opt/php81/conf.d"
ini_path="/opt/php81/etc/"
# 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