0x1949 Team - FAZEMRX - MANAGER
Edit File: php-config
#! /bin/sh SED="/bin/sed" prefix="/opt/cpanel/ea-php81/root/usr" datarootdir="/opt/cpanel/ea-php81/root/usr/share" exec_prefix="/opt/cpanel/ea-php81/root/usr" version="8.1.30" vernum="80130" include_dir="/opt/cpanel/ea-php81/root/usr/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" libs="-lcrypt -lcrypt -lncurses -lrt -lstdc++ -lrt -lm -lgssapi_krb5 -lkrb5 -lk5crypto -lcom_err -lssl -lcrypto -lz -ledit -largon2 -lrt -ldl -lcrypt " extension_dir='/opt/cpanel/ea-php81/root/usr/lib64/php/modules' man_dir=`eval echo /opt/cpanel/ea-php81/root/usr/share/man` program_prefix="" program_suffix="" exe_extension="" php_cli_binary=NONE php_cgi_binary=NONE configure_options=" '--disable-gcc-global-regs' '--build=x86_64-linux-gnu' '--host=x86_64-linux-gnu' '--target=x86_64-pc-linux-gnu' '--program-prefix=' '--disable-dependency-tracking' '--prefix=/opt/cpanel/ea-php81/root/usr' '--exec-prefix=/opt/cpanel/ea-php81/root/usr' '--bindir=/opt/cpanel/ea-php81/root/usr/bin' '--sbindir=/opt/cpanel/ea-php81/root/usr/sbin' '--sysconfdir=/opt/cpanel/ea-php81/root/etc' '--datadir=/opt/cpanel/ea-php81/root/usr/share' '--includedir=/opt/cpanel/ea-php81/root/usr/include' '--libdir=/opt/cpanel/ea-php81/root/usr/lib64' '--libexecdir=/opt/cpanel/ea-php81/root/usr/libexec' '--localstatedir=/opt/cpanel/ea-php81/root/var' '--sharedstatedir=/opt/cpanel/ea-php81/root/var/lib' '--mandir=/opt/cpanel/ea-php81/root/usr/share/man' '--infodir=/opt/cpanel/ea-php81/root/usr/share/info' '--cache-file=../config.cache' '--with-libdir=lib' '--with-config-file-path=/opt/cpanel/ea-php81/root/etc' '--with-config-file-scan-dir=/opt/cpanel/ea-php81/root/etc/php.d' '--disable-debug' '--with-password-argon2=/opt/cpanel/libargon2' '--with-pic' '--without-pear' '--with-bz2=shared' '--with-freetype' ' ' '--with-xpm' '--with-sodium=shared' '--without-gdbm' '--with-gettext=shared' '--with-iconv=shared' '--with-jpeg' '--with-openssl' '--with-pcre-regex=/usr' '--with-zlib' ' ' '--with-layout=GNU' '--enable-exif=shared' '--enable-ftp=shared' '--enable-sockets=shared' '--with-kerberos' '--enable-shmop=shared' '--with-libxml' '--with-system-tzdata' '--with-mhash' '--enable-fpm' '--with-fpm-systemd' '--libdir=/opt/cpanel/ea-php81/root/usr/lib64/php' '--with-mysqli=shared' '--enable-pdo=shared' '--with-pdo-odbc=shared,unixodbc,/usr' '--with-pdo-mysql=shared,mysqlnd' '--with-pdo-pgsql=shared' '--with-pdo-sqlite=shared' '--with-sqlite3=shared' '--enable-pcntl' '--enable-gd=shared' '--enable-dba=shared' '--with-unixODBC=shared' '--enable-opcache=shared' '--enable-xmlreader=shared' '--enable-xmlwriter=shared' '--enable-phar=shared' '--enable-fileinfo=shared' '--enable-json=shared' '--with-pspell=shared' '--with-curl=shared' '--enable-posix=shared' '--enable-xml=shared' '--enable-simplexml=shared' '--enable-ctype=shared' '--enable-sysvmsg=shared' '--enable-sysvshm=shared' '--enable-sysvsem=shared' '--with-gmp=shared' '--enable-calendar=shared' '--with-imap=shared,/usr/lib' '--with-imap-ssl' '--enable-mbstring=shared' '--enable-bcmath=shared' '--with-tcadb=/usr' '--enable-tokenizer=shared' '--with-xmlrpc=shared' '--with-ldap=shared' '--with-ldap-sasl' '--enable-mysqlnd=shared' '--with-mysql-sock=/var/lib/mysql/mysql.sock' '--enable-dom=shared' '--with-pgsql=shared' '--with-snmp=shared' '--with-xsl=shared' '--with-zip=shared' '--enable-soap=shared' '--enable-intl=shared' '--with-tidy=shared' '--with-enchant=shared' '--enable-litespeed' '--enable-phpdbg' '--enable-huge-code-pages' '--with-webp' '--with-avif' 'build_alias=x86_64-linux-gnu' 'host_alias=x86_64-linux-gnu' 'target_alias=x86_64-pc-linux-gnu' 'PKG_CONFIG_PATH=/usr/lib/pkgconfig:/usr/share/pkgconfig:/usr/lib/x86_64-linux-gnu/pkgconfig'" php_sapis=" cli fpm litespeed phpdbg cgi" ini_dir="/opt/cpanel/ea-php81/root/etc/php.d" ini_path="/opt/cpanel/ea-php81/root/etc" # Set php_cli_binary and php_cgi_binary if available for sapi in $php_sapis; do case $sapi in cli) php_cli_binary="/opt/cpanel/ea-php81/root/usr/bin/${program_prefix}php${program_suffix}${exe_extension}" ;; cgi) php_cgi_binary="/opt/cpanel/ea-php81/root/usr/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