Switch to unified view

a/src/configure.ac b/src/configure.ac
...
...
18
# Use aspell to provide spelling expansions ?
18
# Use aspell to provide spelling expansions ?
19
# The default is yes. If we do find an aspell installation, we use it. Else
19
# The default is yes. If we do find an aspell installation, we use it. Else
20
# we do compile the aspell module using an internal copy of aspell.h
20
# we do compile the aspell module using an internal copy of aspell.h
21
# Only --with-aspell=no will completely disable aspell support
21
# Only --with-aspell=no will completely disable aspell support
22
AC_ARG_WITH(aspell, 
22
AC_ARG_WITH(aspell, 
23
    AC_HELP_STRING([--with-aspell],
23
    AC_HELP_STRING([--without-aspell],
24
   [Use aspell spelling package to provide term expansion to other spellings]),
24
   [Disable use of aspell spelling package to provide term expansion to other spellings]),
25
        withAspell=$withval, withAspell=yes)
25
        withAspell=$withval, withAspell=yes)
26
case $withAspell in
26
case $withAspell in
27
     no);;
27
     no);;
28
     yes)
28
     yes)
29
     AC_PATH_PROG(aspellProg, aspell)
29
     AC_PATH_PROG(aspellProg, aspell)