Server IP : 172.67.216.182 / Your IP : 172.68.164.169 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/pspell/ |
Upload File : |
PHP_ARG_WITH([pspell], [for PSPELL support], [AS_HELP_STRING([[--with-pspell[=DIR]]], [Include PSPELL support. GNU Aspell version 0.50.0 or higher required])]) if test "$PHP_PSPELL" != "no"; then PHP_NEW_EXTENSION(pspell, pspell.c, $ext_shared) if test "$PHP_PSPELL" != "yes"; then PSPELL_SEARCH_DIRS=$PHP_PSPELL else PSPELL_SEARCH_DIRS="/usr/local /usr" fi for i in $PSPELL_SEARCH_DIRS; do if test -f $i/include/pspell/pspell.h; then PSPELL_DIR=$i PSPELL_INCDIR=$i/include/pspell elif test -f $i/include/pspell.h; then PSPELL_DIR=$i PSPELL_INCDIR=$i/include fi done if test -z "$PSPELL_DIR"; then AC_MSG_ERROR(Cannot find pspell) fi PSPELL_LIBDIR=$PSPELL_DIR/$PHP_LIBDIR PHP_ADD_LIBRARY_WITH_PATH(pspell, $PSPELL_LIBDIR, PSPELL_SHARED_LIBADD) dnl Add -laspell to LIBS if it exists PHP_CHECK_LIBRARY(aspell,new_aspell_config, [ PHP_ADD_LIBRARY_WITH_PATH(aspell, $PSPELL_LIBDIR, PSPELL_SHARED_LIBADD) ], [], [ -L$PSPELL_LIBDIR ]) PHP_ADD_INCLUDE($PSPELL_INCDIR) PHP_SUBST(PSPELL_SHARED_LIBADD) AC_DEFINE(HAVE_PSPELL,1,[ ]) fi