Searched refs:pspell (Results 1 – 12 of 12) sorted by relevance
/PHP-7.0/ext/pspell/ |
H A D | config.w32 | 4 ARG_WITH("pspell", "pspell/aspell (whatever it's called this month) support", "no"); 8 …if (CHECK_HEADER_ADD_INCLUDE("pspell.h", "CFLAGS_PSPELL", PHP_PHP_BUILD + "\\include\\pspell;" + P… 9 CHECK_LIB("aspell*.lib", "pspell", PHP_PSPELL)) { 10 EXTENSION('pspell', 'pspell.c'); 13 WARNING("pspell not enabled; libraries and headers not found");
|
H A D | config.m4 | 5 PHP_ARG_WITH(pspell,for PSPELL support, 6 [ --with-pspell[=DIR] Include PSPELL support. 10 PHP_NEW_EXTENSION(pspell, pspell.c, $ext_shared) 17 if test -f $i/include/pspell/pspell.h; then 19 PSPELL_INCDIR=$i/include/pspell 20 elif test -f $i/include/pspell.h; then 27 AC_MSG_ERROR(Cannot find pspell) 32 PHP_ADD_LIBRARY_WITH_PATH(pspell, $PSPELL_LIBDIR, PSPELL_SHARED_LIBADD)
|
H A D | README | 1 README file for pspell (spellchecker) module for PHP 4 The latest release of pspell is always available from 8 This module was developed and tested with aspell-.31.1 and pspell-.11.0.2, 17 author changed things around a bit, and suggested that people link to pspell 22 Rather, I wrote a new module - pspell. 25 Building pspell on a Unix system 28 In order to use pspell, you need to have *both* aspell and pspell libraries 34 If that location is different, please specify it in --with-pspell=PATH, where 35 PATH is the path you specified for pspell libraries. 40 It is now possible to have personalized dictionaries with pspell. This is [all …]
|
H A D | pspell.c | 53 static PHP_MINIT_FUNCTION(pspell); 54 static PHP_MINFO_FUNCTION(pspell); 98 ZEND_ARG_INFO(0, pspell) 103 ZEND_ARG_INFO(0, pspell) 108 ZEND_ARG_INFO(0, pspell) 114 ZEND_ARG_INFO(0, pspell) 119 ZEND_ARG_INFO(0, pspell) 124 ZEND_ARG_INFO(0, pspell) 128 ZEND_ARG_INFO(0, pspell) 213 ZEND_GET_MODULE(pspell) in ZEND_GET_MODULE() argument [all …]
|
/PHP-7.0/ext/pspell/tests/ |
H A D | 001.phpt | 2 pspell basic tests (warning: may fail with pspell/aspell < GNU Aspell 0.50.3) 5 if (!extension_loaded("pspell")) die("skip"); 26 $pspell = pspell_new ("en", "", "", "", (PSPELL_FAST|PSPELL_RUN_TOGETHER)); 30 if (!pspell_check($pspell, $array[$i])) { 32 echo "Possible spellings: " . join(',',pspell_suggest ($pspell, $array[$i])) . "\n";
|
H A D | 004.phpt | 2 pspell configs 5 if (!extension_loaded('pspell')) die('skip');
|
H A D | 002.phpt | 2 pspell session 5 if (!extension_loaded('pspell')) die('skip');
|
H A D | 005.phpt | 2 pspell configs 5 if (!extension_loaded('pspell')) die('skip');
|
H A D | 003.phpt | 5 if (!extension_loaded('pspell')) die('skip');
|
/PHP-7.0/travis/ |
H A D | compile.sh | 56 --with-pspell=/usr \
|
/PHP-7.0/ |
H A D | .gitignore | 242 ext/pspell/tests/*.tmp
|
H A D | EXTENSIONS | 379 EXTENSION: pspell
|
Completed in 21 milliseconds