config.w32 448 B

1234567891011121314
  1. // vim:ft=javascript
  2. ARG_WITH("pspell", "pspell/aspell (whatever it's called this month) support", "no");
  3. if (PHP_PSPELL != "no") {
  4. if (CHECK_HEADER_ADD_INCLUDE("pspell.h", "CFLAGS_PSPELL", PHP_PHP_BUILD + "\\include\\pspell;" + PHP_PSPELL) &&
  5. CHECK_LIB("aspell*.lib", "pspell", PHP_PSPELL)) {
  6. EXTENSION('pspell', 'pspell.c');
  7. AC_DEFINE('HAVE_PSPELL', 1);
  8. } else {
  9. WARNING("pspell not enabled; libraries and headers not found");
  10. }
  11. }