Do not disable the other spellers when compiling against internal hunspell

Users might still want to have a selection.

(cherry picked from commit 561d36a19e)
This commit is contained in:
Juergen Spitzmueller 2017-09-18 18:06:01 +02:00
parent 3de5218e63
commit 2c9fd212fd

View File

@ -93,17 +93,15 @@ AC_DEFUN([LYX_CHECK_SPELL_ENGINES],
[ [
LYX_USE_INCLUDED_HUNSPELL LYX_USE_INCLUDED_HUNSPELL
if test x$lyx_cv_with_included_hunspell = xyes ; then if test x$lyx_cv_with_included_hunspell = xyes ; then
dnl the user wanted to use the included hunspell, so do not check for the other spell checkers dnl the user wanted to use the included hunspell, so do not check for external hunspell
lyx_use_aspell=false
lyx_use_enchant=false
lyx_use_hunspell=true lyx_use_hunspell=true
AC_DEFINE(USE_HUNSPELL, 1, [Define as 1 to use the hunspell library]) AC_DEFINE(USE_HUNSPELL, 1, [Define as 1 to use the hunspell library])
lyx_flags="$lyx_flags use-hunspell" lyx_flags="$lyx_flags use-hunspell"
else else
CHECK_WITH_ASPELL
CHECK_WITH_ENCHANT
CHECK_WITH_HUNSPELL CHECK_WITH_HUNSPELL
fi fi
CHECK_WITH_ASPELL
CHECK_WITH_ENCHANT
AM_CONDITIONAL(USE_ASPELL, $lyx_use_aspell) AM_CONDITIONAL(USE_ASPELL, $lyx_use_aspell)
AM_CONDITIONAL(USE_ENCHANT, $lyx_use_enchant) AM_CONDITIONAL(USE_ENCHANT, $lyx_use_enchant)