summaryrefslogtreecommitdiff
blob: d6b4d09b5f23079196e89b5393d6fc8237dc3c28 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
--- cone-0.84.20100819/cone/configure.in.orig	2010-11-11 22:08:37.279191265 -0800
+++ cone-0.84.20100819/cone/configure.in	2010-11-11 23:26:22.685898387 -0800
@@ -168,19 +168,9 @@
 LIBS="$save_LIBS"
 AC_MSG_RESULT($PSPELL)
 
-ALLSPELLOBJ='spellcheckerNone.$(OBJEXT)'
-if test "$ASPELL" = "yes"
-then
-	ALLSPELLOBJ='spellcheckerAspell.$(OBJEXT)'" $ALLSPELLOBJ"
-fi
-
-if test "$PSPELL" = "yes"
-then
-	ALLSPELLOBJ='spellcheckerPspell.$(OBJEXT)'" $ALLSPELLOBJ"
-fi
-
 AC_ARG_WITH(spellcheck, [  --with-spellcheck=pspell      Use pspell for spell checking
-  --with-spellcheck=aspell      Use aspell for spell checking], [
+  --with-spellcheck=aspell      Use aspell for spell checking
+  --with-spellcheck=none        Disable spell checking], [
 
 case "$withval" in
 pspell)
@@ -196,6 +186,10 @@
 		AC_MSG_ERROR(aspell library not found)
 	fi
 	;;
+none)
+	SPELL="no"
+	# Spellchecking is not enabled
+	;;
 *)
 	AC_MSG_ERROR(Invalid --with-spellcheck option)
 	;;
@@ -216,24 +210,34 @@
 AC_MSG_RESULT(yes)
 ], AC_MSG_RESULT(no))
 
-if test "$ASPELL" = "yes"
+if test "$SPELL" = "no"
 then
-	SPELL_OBJ='spellcheckerAspell.$(OBJEXT)'
-	AC_DEFINE_UNQUOTED(USE_ASPELL, 1, [ Use aspell library for spell checking ])
-	SPELL_LIB='-laspell'
+	ALLSPELLOBJ='spellcheckerNone.$(OBJEXT)'
+	SPELL_OBJ='spellcheckerNone.$(OBJEXT)'
+	SPELL_LIB=''
+	AC_MSG_WARN(Disabling spell checking)
 else
-	if test "$PSPELL" = "yes"
+	if test "$ASPELL" = "yes"
 	then
-		AC_DEFINE_UNQUOTED(USE_PSPELL, 1, [ Use aspell library for spell checking ])
-		SPELL_OBJ='spellcheckerPspell.$(OBJEXT)'
-		SPELL_LIB='-lpspell'
+		ALLSPELLOBJ='spellcheckerAspell.$(OBJEXT)'" $ALLSPELLOBJ"
+		SPELL_OBJ='spellcheckerAspell.$(OBJEXT)'
+		AC_DEFINE_UNQUOTED(USE_ASPELL, 1, [ Use aspell library for spell checking ])
+		SPELL_LIB='-laspell'
 	else
-		AC_MSG_WARN(---------------------------------------------------------------)
-		AC_MSG_WARN(Neither pspell nor aspell was found -- disabling spell checking)
-		AC_MSG_WARN(---------------------------------------------------------------)
-		sleep 5
-		SPELL_OBJ='spellcheckerNone.$(OBJEXT)'
-		SPELL_LIB=''
+		if test "$PSPELL" = "yes"
+		then
+			ALLSPELLOBJ='spellcheckerPspell.$(OBJEXT)'" $ALLSPELLOBJ"
+			AC_DEFINE_UNQUOTED(USE_PSPELL, 1, [ Use aspell library for spell checking ])
+			SPELL_OBJ='spellcheckerPspell.$(OBJEXT)'
+			SPELL_LIB='-lpspell'
+		else
+			AC_MSG_WARN(---------------------------------------------------------------)
+			AC_MSG_WARN(Neither pspell nor aspell was found -- disabling spell checking)
+			AC_MSG_WARN(---------------------------------------------------------------)
+			sleep 5
+			SPELL_OBJ='spellcheckerNone.$(OBJEXT)'
+			SPELL_LIB=''
+		fi
 	fi
 fi