diff options
author | Wez Furlong <wez@php.net> | 2004-01-07 20:06:32 +0000 |
---|---|---|
committer | Wez Furlong <wez@php.net> | 2004-01-07 20:06:32 +0000 |
commit | 48b96c10d2c9efbe4ff11876c6cd9f9361073bc3 (patch) | |
tree | f71638754ba0c720f15651f9d797c308f1a623c3 /ext/pspell | |
parent | 6e65e1d82106b9aca0a2dcf498df54ffccae7168 (diff) | |
download | php-git-48b96c10d2c9efbe4ff11876c6cd9f9361073bc3.tar.gz |
glob-ify lib checks; this simplifies writing of config.w32 files a little.
Diffstat (limited to 'ext/pspell')
-rw-r--r-- | ext/pspell/config.w32 | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/ext/pspell/config.w32 b/ext/pspell/config.w32 index 33f8f9d2c9..741a4bc8f0 100644 --- a/ext/pspell/config.w32 +++ b/ext/pspell/config.w32 @@ -6,11 +6,9 @@ ARG_WITH("pspell", "pspell/aspell (whatever it's called this month) support", "n if (PHP_PSPELL != "no") { if (CHECK_HEADER_ADD_INCLUDE("pspell.h", "CFLAGS_PSPELL", PHP_PHP_BUILD + "\\include\\pspell;" + PHP_PSPELL) && - CHECK_LIB("aspell-15.lib", "pspell", PHP_PSPELL)) { + CHECK_LIB("aspell*.lib", "pspell", PHP_PSPELL)) { EXTENSION('pspell', 'pspell.c'); - AC_DEFINE('HAVE_PSPELL', 1); - } else { WARNING("pspell not enabled; libraries and headers not found"); } |