summaryrefslogtreecommitdiff
path: root/configure.in
diff options
context:
space:
mode:
authorLuboš Luňák <l.lunak@suse.cz>2012-04-23 22:30:27 +0200
committerLuboš Luňák <l.lunak@suse.cz>2012-04-23 22:30:27 +0200
commit4645790b7312bae05a73f0e039feecbede5ff5da (patch)
treece79f7f3c5a98093877f3393a1c795dcc8d45359 /configure.in
parentb97f109cb62de8f005a7e2fdc95c92f94d120676 (diff)
fix CLucene configure check
CLucene apparently does not bother with self-contained headers
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.in b/configure.in
index 50e15a35b992..eb300c9ddd62 100644
--- a/configure.in
+++ b/configure.in
@@ -5973,7 +5973,7 @@ if test "$with_system_clucene" = "yes"; then
dnl http://sourceforge.net/tracker/index.php?func=detail&aid=3392466&group_id=80013&atid=558446
dnl https://bugzilla.redhat.com/show_bug.cgi?id=794795
AC_CHECK_HEADER([CLucene/analysis/cjk/CJKAnalyzer.h], [],
- [AC_MSG_ERROR([Your version of libclucene has contribs-lib missing.])], [])
+ [AC_MSG_ERROR([Your version of libclucene has contribs-lib missing.])], [#include <CLucene.h>])
CXXFLAGS=$save_CXXFLAGS
CPPFLAGS=$save_CPPFLAGS
AC_LANG_POP([C++])