summaryrefslogtreecommitdiff
blob: 3304ee617fb5f9f9011890f0e110a051a3941465 (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
diff -NurdB dasher-4.0.2/configure.in dasher-4.0.2-patched/configure.in
--- dasher-4.0.2/configure.in	2006-04-01 15:33:33.000000000 -0500
+++ dasher-4.0.2-patched/configure.in	2006-05-27 03:07:26.000000000 -0500
@@ -46,7 +46,7 @@
 
 AC_ARG_ENABLE([speech],
 	 AC_HELP_STRING([--enable-speech],[build with speech support (default is NO)]),
-	 if test $withval = "no"; then
+	 if test $enableval = "no"; then
 	   WITHSPEECH=false; 
 	 else
 	   WITHSPEECH=true;
@@ -73,7 +73,7 @@
 
 AC_ARG_ENABLE([a11y],
 	 AC_HELP_STRING([--enable-a11y],[build with support for the GNOME accessibility framework (default is YES)]),
-	 if test $withval = "no"; then
+	 if test $enableval = "no"; then
 	   WITHA11Y=false; 
 	 else
 	   WITHA11Y=true;
@@ -82,7 +82,7 @@
 
 AC_ARG_ENABLE([japanese],
 	 AC_HELP_STRING([--enable-japanese],[build with support for Japanese Kanji entry (experimental -- default is NO)]),
-	 if test $withval = "no"; then
+	 if test $enableval = "no"; then
 	   WITHJAPANESE=false; 
 	 else
 	   AC_CHECK_LIB(canna, RkBgnBun,, AC_MSG_ERROR([Canna library not found.]))