From: Timo Sirainen Date: Mon, 20 Apr 2015 14:24:37 +0000 (+0300) Subject: configure: Fixed building without textcat. X-Git-Tag: 2.2.17.rc1~202 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=30106a5a9ff807bf8ad4dd322425892dc6c16ca3;p=thirdparty%2Fdovecot%2Fcore.git configure: Fixed building without textcat. --- diff --git a/configure.ac b/configure.ac index a3f553d62a..5b483c3adb 100644 --- a/configure.ac +++ b/configure.ac @@ -2789,7 +2789,7 @@ if test $want_textcat != no; then AC_ERROR([Can't build with textcat support: libtextcat or libexttextcat not found]) fi fi - if test "$have_fts_exttextcat" != yes || test "$have_fts_textcat" != yes; then + if test "$have_fts_exttextcat" = yes || test "$have_fts_textcat" = yes; then AC_DEFINE(HAVE_FTS_TEXTCAT,, Define if you want textcat support for FTS) AC_DEFINE_UNQUOTED(TEXTCAT_DATADIR, "$TEXTCAT_DATADIR", Points to textcat pkgdatadir containing the language files) fi