turn on pspell by default

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@6192 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
John Levon 2003-02-17 23:51:28 +00:00
parent 47c34c3afa
commit 975c91c587
2 changed files with 7 additions and 3 deletions

View File

@ -1,3 +1,7 @@
2003-02-17 John Levon <levon@movementarian.org>
* config/pspell.m4: turn on pspell by default
2003-02-17 John Levon <levon@movementarian.org>
* config/configure.ac:

View File

@ -3,12 +3,12 @@
AC_DEFUN(CHECK_WITH_PSPELL,
[
USE_PSPELL="no"
USE_PSPELL="yes"
AC_MSG_CHECKING([for pspell support])
AC_ARG_WITH(pspell,
[ --with-pspell use PSpell libraries],[
if test "$withval" != "no"; then
USE_PSPELL="yes"
if test "$withval" = "no"; then
USE_PSPELL="no"
fi
])