From f7548d6d28c313cf80e6f3ef89aed16a19815df1 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 28 Apr 2024 11:51:24 +0200 Subject: Adding upstream version 1:2.3.19.1+dfsg1. Signed-off-by: Daniel Baumann --- m4/want_icu.m4 | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 m4/want_icu.m4 (limited to 'm4/want_icu.m4') 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") +]) -- cgit v1.2.3