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.
24 lines
415 B
24 lines
415 B
AC_DEFUN([KMAIL_CHECK_INDEXLIB], |
|
[ |
|
AC_REQUIRE([KDE_CHECK_LIB64]) |
|
|
|
AC_MSG_CHECKING(for indexlib) |
|
|
|
missing_indexlib=ignore |
|
AC_ARG_ENABLE(indexlib, |
|
AS_HELP_STRING([--enable-indexlib],[Enable full-text indexing in KMail.]), |
|
AC_DEFINE(HAVE_INDEXLIB,1,[Define if you want full-text indexing in KMail]) |
|
missing_indexlib=no |
|
) |
|
|
|
|
|
AM_CONDITIONAL(add_indexlib, test no = "$missing_indexlib") |
|
|
|
|
|
|
|
]) |
|
|
|
|
|
|
|
KMAIL_CHECK_INDEXLIB |
|
|
|
|