Server IP : 104.21.38.3 / Your IP : 162.158.107.17 Web Server : Apache System : Linux krdc-ubuntu-s-2vcpu-4gb-amd-blr1-01.localdomain 5.15.0-142-generic #152-Ubuntu SMP Mon May 19 10:54:31 UTC 2025 x86_64 User : www ( 1000) PHP Version : 7.4.33 Disable Function : passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /www/server/php/74/src/ext/xsl/ |
Upload File : |
PHP_ARG_WITH([xsl], [whether to build with XSL support], [AS_HELP_STRING([--with-xsl], [Build with XSL support])]) if test "$PHP_XSL" != "no"; then if test "$PHP_LIBXML" = "no"; then AC_MSG_ERROR([XSL extension requires LIBXML extension, add --with-libxml]) fi if test "$PHP_DOM" = "no"; then AC_MSG_ERROR([XSL extension requires DOM extension, add --enable-dom]) fi PKG_CHECK_MODULES([XSL], [libxslt >= 1.1.0]) PHP_EVAL_INCLINE($XSL_CFLAGS) PHP_EVAL_LIBLINE($XSL_LIBS, XSL_SHARED_LIBADD) PKG_CHECK_MODULES([EXSLT], [libexslt], [ PHP_EVAL_INCLINE($EXSLT_CFLAGS) PHP_EVAL_LIBLINE($EXSLT_LIBS, XSL_SHARED_LIBADD) AC_DEFINE(HAVE_XSL_EXSLT, 1, [ ]) ], [ ]) AC_DEFINE(HAVE_XSL,1,[ ]) PHP_NEW_EXTENSION(xsl, php_xsl.c xsltprocessor.c, $ext_shared) PHP_SUBST(XSL_SHARED_LIBADD) PHP_ADD_EXTENSION_DEP(xsl, libxml) fi