diff options
| author | Vlad Krupin <vlad@php.net> | 2001-12-29 01:50:10 +0000 |
|---|---|---|
| committer | Vlad Krupin <vlad@php.net> | 2001-12-29 01:50:10 +0000 |
| commit | 2f307b2a53ffc91e04ae5f4c01c8176814499cb8 (patch) | |
| tree | 3c1859f0d3695061ea63d3ad5535063ef8bcb164 /ext/pspell | |
| parent | 7bdacc44a22ed2e9fa7da5b62f0a66c7f9d56962 (diff) | |
| download | php-git-2f307b2a53ffc91e04ae5f4c01c8176814499cb8.tar.gz | |
fixed bug preventing pspell from building when pspell header files are
located in an unusual (e.g. /usr/local/include/pspell) location.
@fixed bug that made pspell include pspell.h from a wrong location. (Vlad)
Diffstat (limited to 'ext/pspell')
| -rw-r--r-- | ext/pspell/pspell.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/pspell/pspell.c b/ext/pspell/pspell.c index cd90285bf6..52d2587422 100644 --- a/ext/pspell/pspell.c +++ b/ext/pspell/pspell.c @@ -36,7 +36,7 @@ #define USE_ORIGINAL_MANAGER_FUNCS #include "php_pspell.h" -#include <pspell/pspell.h> +#include <pspell.h> #include "ext/standard/info.h" #define PSPELL_FAST 1L |
