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.]))