Fix the pspell tests.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@6576 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
John Levon 2003-03-25 21:14:44 +00:00
parent 6d47abda7f
commit 16cba1f3ab
2 changed files with 13 additions and 9 deletions

View File

@ -1,3 +1,7 @@
2003-03-25 John Levon <levon@movementarian.org>
* pspell.m4: fix up the tests again
2003-03-24 Lars Gullik Bjønnes <larsbj@gullik.net>
* lyxinclude.m4 (lyx_warning): add gcc 3.3 as known compiler and

View File

@ -3,27 +3,27 @@
AC_DEFUN(CHECK_WITH_PSPELL,
[
AC_MSG_CHECKING([for pspell support])
AC_ARG_WITH(pspell,
AC_HELP_STRING([--with-pspell],[use PSpell libraries]),
[
case "$withval" in
y*) USE_PSPELL="yes";;
*) USE_PSPELL="no";;
y*) TRY_PSPELL="yes";;
*) TRY_PSPELL="no";;
esac
],
[
USE_PSPELL="yes"
TRY_PSPELL="yes"
])
if test "$USE_PSPELL" = "yes" ; then
AC_CHECK_HEADERS(pspell/pspell.h, break, USE_PSPELL=no)
AC_CHECK_LIB(pspell, new_pspell_config)
if test "$TRY_PSPELL" = "yes" ; then
AC_CHECK_HEADERS(pspell.h pspell/pspell.h, break, USE_PSPELL=no)
AC_CHECK_LIB(pspell, main)
if test "$USE_PSPELL" = "yes"; then
if test "$TRY_PSPELL" = "yes"; then
AC_DEFINE(USE_PSPELL, 1, [Define as 1 to use the pspell library])
lyx_flags="$lyx_flags use-pspell"
fi
fi
AC_MSG_RESULT($USE_PSPELL)
AC_MSG_CHECKING([whether to use pspell])
AC_MSG_RESULT($TRY_PSPELL)
])