From dd31fc9f7e6d23b414b22874de96eb3c002c80ba Mon Sep 17 00:00:00 2001 From: Khaled Hosny Date: Fri, 22 Jul 2016 02:26:54 +0300 Subject: [PATCH] =?utf8?q?Don=E2=80=99t=20build=20UCDN=20support=20when=20?= =?utf8?q?building=20with=20GLib=20(#296)?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Regression from: b424b6c372dfe4c0ed75a49761eb34a416819446. --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index e1a28f2..e572d98 100644 --- a/configure.ac +++ b/configure.ac @@ -288,7 +288,7 @@ AM_CONDITIONAL(HAVE_ICU_BUILTIN, $have_icu && test "x$with_icu" = "xbuiltin") dnl =========================================================================== have_ucdn=true -if $have_glib || $have_icu && test "x$with_icu" = "xbuiltin"; then +if $have_glib || test \( $have_icu -a "x$with_icu" = "xbuiltin" \); then have_ucdn=false fi if $have_ucdn; then -- 2.7.4