summaryrefslogtreecommitdiffstats
path: root/m4/want_icu.m4
diff options
context:
space:
mode:
Diffstat (limited to 'm4/want_icu.m4')
-rw-r--r--m4/want_icu.m412
1 files changed, 12 insertions, 0 deletions
diff --git a/m4/want_icu.m4 b/m4/want_icu.m4
new file mode 100644
index 0000000..9127ebc
--- /dev/null
+++ b/m4/want_icu.m4
@@ -0,0 +1,12 @@
+AC_DEFUN([DOVECOT_WANT_ICU], [
+ if test "$want_icu" != "no"; then
+ if test "$PKG_CONFIG" != "" && $PKG_CONFIG --exists icu-i18n 2>/dev/null; then
+ PKG_CHECK_MODULES(LIBICU, icu-i18n)
+ have_icu=yes
+ AC_DEFINE(HAVE_LIBICU,, [Define if you want ICU normalization support for FTS])
+ elif test "$want_icu" = "yes"; then
+ AC_ERROR([Can't build with libicu support: libicu-i18n not found])
+ fi
+ fi
+ AM_CONDITIONAL(BUILD_LIBICU, test "$have_icu" = "yes")
+])