Linux SRV-16 6.18.44-paas #1 SMP PREEMPT_DYNAMIC Thu Aug 13 10:08:12 UTC 2026 x86_64
/
opt
/
php-7.3
/
bin
/
//opt/php-7.3/bin/php-config
#! /bin/sh SED="/bin/sed" prefix="/opt/php-7.3.31-202110251509" datarootdir="/opt/php-7.3.31-202110251509/share" exec_prefix="${prefix}" version="7.3.31" vernum="70331" 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/usr/lib/x86_64-linux-gnu" libs="-lcrypt -lcrypt -lgd -lX11 -lXpm -lpng -lz -ljpeg -lX11 -lXpm -lpng -lz -ljpeg -ldb -lqdbm -lbz2 -lz -lrt -lm -ldl -lnsl -lresolv -lxml2 -lgssapi_krb5 -lkrb5 -lk5crypto -lcom_err -lssl -lcrypto -lfreetype -lfreetype -lcrypt -lxml2 -lssl -lcrypto -lcrypt " extension_dir='/opt/php-7.3.31-202110251509/lib/php/20180731' man_dir=`eval echo /opt/php-7.3.31-202110251509/man` program_prefix="" program_suffix="" exe_extension="" php_cli_binary=NONE php_cgi_binary=NONE configure_options=" '--prefix=/opt/php-7.3.31-202110251509' '--enable-fpm' '--disable-cgi' '--with-fpm-user=www-data' '--with-fpm-group=www-data' '--with-config-file-path=/opt/php-7.3.31-202110251509/etc/php/fpm' '--with-config-file-scan-dir=/opt/php-7.3.31-202110251509/etc/php/fpm/conf.d' '--build=x86_64-linux-gnu' '--host=x86_64-linux-gnu' '--sysconfdir=/opt/php-7.3.31-202110251509/etc' '--localstatedir=/opt/php-7.3.31-202110251509/var' '--disable-debug' '--disable-rpath' '--disable-static' '--enable-filter' '--enable-xml' '--enable-session' '--enable-pcntl' '--with-pic' '--with-layout=GNU' '--with-bz2' '--with-qdbm=/usr' '--without-gdbm' '--with-iconv=shared' '--with-gettext=shared' '--with-zlib' '--with-kerberos=/usr' '--with-mhash=shared' '--with-curl=shared' '--with-mysql-sock=/var/run/mysqld/mysqld.sock' '--enable-dtrace' '--with-imap=shared,/usr' '--with-ldap-sasl' '--with-libedit=shared' '--with-pear' '--with-json' '--enable-libxml' '--with-onig=/usr' '--with-libxml-dir=/usr' '--with-gd=/usr' '--with-jpeg-dir=/usr' '--with-png-dir=shared,/usr' '--with-xpm-dir=shared,/usr/X11R6' '--with-freetype-dir=shared,/usr' '--with-imap-ssl' '--with-openssl=yes' '--with-db4' '--disable-all' '--without-mm' '--disable-pdo' '--mandir=/opt/php-7.3.31-202110251509/man' '--enable-mysqlnd' '--with-mysqli' '--with-pgsql=shared,/usr' 'PGSQL_INCLUDE=/usr/include/postgresql' '--without-sqlite3' 'build_alias=x86_64-linux-gnu' 'host_alias=x86_64-linux-gnu'" php_sapis=" cli fpm phpdbg" # 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