[dovecot-cvs] dovecot configure.in,1.306,1.307

cras at dovecot.org cras at dovecot.org
Mon Sep 18 02:15:55 EEST 2006


Update of /var/lib/cvs/dovecot
In directory talvi:/tmp/cvs-serv17064

Modified Files:
	configure.in 
Log Message:
--with-lucene now enables lucene full text search indexing. Note that using
it breaks IMAP RFC. It also seems to have problems finding texts that have
special characters in them, such as email addresses.

You can anyway enable it by loading fts and fts_lucene plugins and setting
fts=lucene in plugin section.



Index: configure.in
===================================================================
RCS file: /var/lib/cvs/dovecot/configure.in,v
retrieving revision 1.306
retrieving revision 1.307
diff -u -d -r1.306 -r1.307
--- configure.in	17 Sep 2006 16:28:10 -0000	1.306
+++ configure.in	17 Sep 2006 23:15:53 -0000	1.307
@@ -218,6 +218,16 @@
 	fi,
 	want_sqlite=no)
 
+AC_ARG_WITH(lucene,
+[  --with-lucene           Build with CLucene full text search support],
+	if test x$withval = xno; then
+		want_lucene=no
+	else
+		want_lucene=yes
+	fi,
+	want_lucene=no)
+AM_CONDITIONAL(BUILD_LUCENE, test "$want_lucene" = "yes")
+
 AC_ARG_WITH(ssl,
 [  --with-ssl=[gnutls|openssl] Build with GNUTLS or OpenSSL (default)],
 	if test x$withval = xno; then
@@ -1801,6 +1811,7 @@
 src/plugins/convert/Makefile
 src/plugins/expire/Makefile
 src/plugins/fts/Makefile
+src/plugins/fts-lucene/Makefile
 src/plugins/quota/Makefile
 src/plugins/imap-quota/Makefile
 src/plugins/trash/Makefile



More information about the dovecot-cvs mailing list