From 03953062c2efe19d01c0b8bf7bb7f74d06420d29 Mon Sep 17 00:00:00 2001 From: Amar Takhar Date: Sun, 20 Apr 2008 14:52:09 +0000 Subject: [PATCH] Add missing AC_DEFINE for WITH_HUNSPELL, without this hunspell was not being activated. I've just verified that it works fine. Originally committed to SVN as r2182. --- configure.in | 2 ++ 1 file changed, 2 insertions(+) diff --git a/configure.in b/configure.in index f90ab3481..78bf9dce5 100644 --- a/configure.in +++ b/configure.in @@ -507,6 +507,8 @@ int main(void) { if test "$agi_with_hunspell" = "no" && test "$with_hunspell" = "yes"; then AC_MSG_WARN([Hunspell detected, but it doesn't work..]) with_old_hunspell="no" +else + AC_DEFINE(WITH_HUNSPELL, 1, [Enable Hunspell support.]) fi AM_CONDITIONAL([HAVE_HUNSPELL], [test "$with_old_hunspell" != "no"])