diff options
| author | Sascha Schumann <sas@php.net> | 1999-12-30 04:07:46 +0000 |
|---|---|---|
| committer | Sascha Schumann <sas@php.net> | 1999-12-30 04:07:46 +0000 |
| commit | 2c99bef442d71a455628628e932daf26aaec8a46 (patch) | |
| tree | f4a7ca3e976ff07d3d6a730bded4ed1598b6ff8d /ext/aspell | |
| parent | e3af8ed3217b0a3bd46382e523bb12cfdc12e230 (diff) | |
| download | php-git-2c99bef442d71a455628628e932daf26aaec8a46.tar.gz | |
Get rid of config.h.stub. Note that you should embed a comment about
what the respective define does into the AC_DEFINE macro. I.e.
AC_DEFINE(HAVE_FOO, 1, [Whether you have FOO])
Diffstat (limited to 'ext/aspell')
| -rw-r--r-- | ext/aspell/config.h.stub | 4 | ||||
| -rw-r--r-- | ext/aspell/config.m4 | 2 |
2 files changed, 1 insertions, 5 deletions
diff --git a/ext/aspell/config.h.stub b/ext/aspell/config.h.stub deleted file mode 100644 index 4be31d352a..0000000000 --- a/ext/aspell/config.h.stub +++ /dev/null @@ -1,4 +0,0 @@ -/* Define if you want the ASPELL interface */ -#ifndef HAVE_ASPELL -#define HAVE_ASPELL 0 -#endif diff --git a/ext/aspell/config.m4 b/ext/aspell/config.m4 index bfec9c4223..06b4c276c5 100644 --- a/ext/aspell/config.m4 +++ b/ext/aspell/config.m4 @@ -17,7 +17,7 @@ AC_ARG_WITH(aspell, if test ! -f "$ASPELL_DIR/include/aspell-c.h"; then AC_MSG_ERROR(Could not find aspell-c.h in $ASPELL_DIR/include - please copy it manually from the aspell sources to $ASPELL_DIR/include) fi - AC_DEFINE(HAVE_ASPELL) + AC_DEFINE(HAVE_ASPELL,1,[Whether you have aspell]) AC_MSG_RESULT(yes) PHP_EXTENSION(aspell) else |
