From: Timo Sirainen Date: Tue, 9 Mar 2010 14:54:08 +0000 (+0200) Subject: configure: --with-lucene fails now with suggestion to use Solr instead. X-Git-Tag: 2.0.beta4~86 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=ed8403d7c3c2948f717e6643f740ad5e9cd9cabc;p=thirdparty%2Fdovecot%2Fcore.git configure: --with-lucene fails now with suggestion to use Solr instead. --HG-- branch : HEAD --- diff --git a/configure.in b/configure.in index d231c08339..3f6db35006 100644 --- a/configure.in +++ b/configure.in @@ -150,6 +150,9 @@ AC_ARG_WITH(lucene, [ --with-lucene Build with CLucene full text search support], TEST_WITH(lucene, $withval), want_lucene=no) +if test "$want_lucene" = "yes"; then + AC_ERROR([CLucene support isn't working very well. Use Solr instead.]) +fi AM_CONDITIONAL(BUILD_LUCENE, test "$want_lucene" = "yes") AC_ARG_WITH(solr,