You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
koffice/lib/kotext/configure.in.in

17 lines
602 B

AC_LANG_SAVE
AC_LANG_C
dnl Check for aspell library
KDE_CHECK_HEADERS([tdespell2/broker.h])
if test "x$ac_cv_header_tdespell2_broker_h" = "xyes"; then
dnl the header and the lib exist -> ok
dnl this is for config.h
AC_DEFINE(HAVE_LIBKSPELL2, 1, [If we are going to use libtdespell2 for spell-checking])
LIBKSPELL2="-ltdespell2"
AC_MSG_RESULT([found in $ac_tdespell2_includes])
else
LIBKSPELL2=""
AC_MSG_RESULT([not found -- spell-checking will be disabled])
fi
AC_SUBST(LIBKSPELL2)
AC_LANG_RESTORE