summaryrefslogtreecommitdiffstats
path: root/m4/want_stemmer.m4
diff options
context:
space:
mode:
Diffstat (limited to 'm4/want_stemmer.m4')
-rw-r--r--m4/want_stemmer.m414
1 files changed, 14 insertions, 0 deletions
diff --git a/m4/want_stemmer.m4 b/m4/want_stemmer.m4
new file mode 100644
index 0000000..f3b93d3
--- /dev/null
+++ b/m4/want_stemmer.m4
@@ -0,0 +1,14 @@
+AC_DEFUN([DOVECOT_WANT_STEMMER], [
+ if test $want_stemmer != no; then
+ AC_CHECK_LIB(stemmer, sb_stemmer_new, [
+ have_fts_stemmer=yes
+ AC_DEFINE(HAVE_FTS_STEMMER,, [Define if you want stemming support for FTS])
+ ], [
+ if test $want_stemmer = yes; then
+ AC_ERROR([Can't build with stemmer support: libstemmer not found])
+ fi
+ ])
+ fi
+
+ AM_CONDITIONAL([BUILD_FTS_STEMMER], [test "$have_fts_stemmer" = "yes"])
+])