From 37a50cd97d6680bc5c77d191ac8ad4ec59066f85 Mon Sep 17 00:00:00 2001 From: Amar Takhar Date: Fri, 25 Apr 2008 20:47:13 +0000 Subject: [PATCH] Fix hunspell run-check, NULL,NULL used to work fine for the aff/dic path in <1.2 but it segfaults in >1.2. They've been changed to ".","." which works fine. Originally committed to SVN as r2188. --- configure.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.in b/configure.in index eda361107..2f1e82dad 100644 --- a/configure.in +++ b/configure.in @@ -497,7 +497,7 @@ if test "$with_hunspell" != "no"; then #include int main(void) { Hunspell *hunspell; - hunspell = new Hunspell(NULL,NULL); + hunspell = new Hunspell(".", "."); if (!hunspell) return 1; return 0; } ])