Return to config.w32 CVS log | Up to [ELWIX - Embedded LightWeight unIX -] / embedaddon / php / ext / pspell |
1.1 ! misho 1: // $Id: config.w32 242949 2007-09-26 15:44:16Z cvs2svn $ ! 2: // vim:ft=javascript ! 3: ! 4: ARG_WITH("pspell", "pspell/aspell (whatever it's called this month) support", "no"); ! 5: ! 6: if (PHP_PSPELL != "no") { ! 7: ! 8: if (CHECK_HEADER_ADD_INCLUDE("pspell.h", "CFLAGS_PSPELL", PHP_PHP_BUILD + "\\include\\pspell;" + PHP_PSPELL) && ! 9: CHECK_LIB("aspell*.lib", "pspell", PHP_PSPELL)) { ! 10: EXTENSION('pspell', 'pspell.c'); ! 11: AC_DEFINE('HAVE_PSPELL', 1); ! 12: } else { ! 13: WARNING("pspell not enabled; libraries and headers not found"); ! 14: } ! 15: } ! 16: