Hallo, dies ist ein Test.
PWD: /www/data-lst1/unixsoft/unixsoft/kaempfer/.public_html
Running in File Mode
Relative path: ./../../../.././../../bin/php-config
Real path: /usr/php/8.1/bin/php-config
Zurück
#! /bin/sh SED="/usr/gnu/bin/sed" prefix="/usr/php/8.1" datarootdir="/usr/php/8.1/php" exec_prefix="${prefix}" version="8.1.23" vernum="80123" 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/sparcv9 -L/usr/lib/64" libs="-lcrypt -lresolv -lrt -lstdc++ -lrt -lm -lpthread -lxml2 -lpcre2-8 -lsqlite3 -lz -lxml2 -lgd -lsqlite3 -lxml2 -lxml2 -lxml2 -lxml2 -lzip -lz -lssl -lcrypto -lcrypt " extension_dir='/usr/php/8.1/lib/extensions/no-debug-zts-20210902' man_dir=`eval echo /usr/php/8.1/share/man` program_prefix="" program_suffix="" exe_extension="" php_cli_binary=NONE php_cgi_binary=NONE configure_options=" '--prefix=/usr/php/8.1' '--mandir=/usr/php/8.1/share/man' '--bindir=/usr/php/8.1/bin' '--sbindir=/usr/php/8.1/sbin' '--libdir=/usr/php/8.1/lib' '--without-pcre-jit' '--enable-fpm' '--with-apxs2=/usr/apache2/2.4/bin/apxs' '--with-zlib' '--with-mysqli=shared,mysqlnd' '--with-pdo-mysql=shared,mysqlnd' '--with-mysql-sock=/tmp/mysql.sock' '--enable-bcmath=shared' '--with-bz2=shared' '--with-zip' '--enable-calendar=shared' '--with-curl=shared' '--enable-dba=shared' '--with-db4' '--with-cdb' '--with-enchant=shared' '--enable-exif=shared' '--enable-ftp=shared' '--with-gettext=shared' '--enable-gd' '--with-external-gd' '--enable-gd-jis-conv' '--with-freetype' '--with-xpm' '--with-jpeg' '--with-gmp=shared' '--enable-intl=shared' '--with-ldap=shared' '--enable-mbstring=shared' '--with-openssl=shared' '--enable-pcntl=shared' '--with-readline=shared' '--enable-shmop=shared' '--with-snmp=shared' '--enable-soap=shared' '--enable-sockets=shared' '--enable-sysvsem=shared' '--enable-sysvshm=shared' '--enable-sysvmsg=shared' '--with-tidy=shared' '--with-xmlrpc=shared' '--with-xsl=shared' '--with-imap=shared,/builds/11.4-SRU/11.4.63.0.1.157.0/components/php/uw-imap/build/sparcv9' '--with-imap-ssl=shared,/usr' '--with-kerberos' '--with-mhash' '--with-external-pcre' '--enable-dtrace' '--disable-rpath' '--sysconfdir=/etc/php/8.1' '--localstatedir=/var/php/8.1' '--with-config-file-path=/etc/php/8.1' '--with-config-file-scan-dir=/etc/php/8.1/conf.d' '--with-pear=/var/php/8.1/pear' '--disable-phpdbg' '--disable-phpdbg-webhelper' '--disable-phpdbg-debug' 'CXXFLAGS= -m64 -O3 -mno-app-regs -ffile-prefix-map=/builds/11.4-SRU/11.4.63.0.1.157.0/components/php/php81=. -std=c++11' 'PKG_CONFIG_PATH=/usr/lib/sparcv9/pkgconfig' 'CFLAGS=-m64 -O3 -mno-app-regs -ffile-prefix-map=/builds/11.4-SRU/11.4.63.0.1.157.0/components/php/php81=. -std=gnu99 -DOPENSSL_NO_SSL2 -DOPENSSL_NO_SSL3'" php_sapis=" apache2handler cli fpm cgi" ini_dir="/etc/php/8.1/conf.d" ini_path="/etc/php/8.1" # Set php_cli_binary and php_cgi_binary if available for sapi in $php_sapis; do case $sapi in cli) php_cli_binary="/usr/php/8.1/bin/${program_prefix}php${program_suffix}${exe_extension}" ;; cgi) php_cgi_binary="/usr/php/8.1/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