diff --git a/configure.ac b/configure.ac index f1474357c..9ac0af5d3 100644 --- a/configure.ac +++ b/configure.ac @@ -128,14 +128,6 @@ AM_CONDITIONAL(HAVE_HB_OLD, $have_hb_old) dnl =========================================================================== -have_ucdn=true -if $have_ucdn; then - AC_DEFINE(HAVE_UCDN, 1, [Have UCDN Unicode functions]) -fi -AM_CONDITIONAL(HAVE_UCDN, $have_ucdn) - -dnl =========================================================================== - PKG_CHECK_MODULES(GLIB, glib-2.0 >= 2.16, have_glib=true, have_glib=false) if $have_glib; then AC_DEFINE(HAVE_GLIB, 1, [Have glib2 library]) @@ -150,6 +142,14 @@ if $have_gobject; then fi AM_CONDITIONAL(HAVE_GOBJECT, $have_gobject) +dnl =========================================================================== + +have_ucdn=true +if $have_ucdn; then + AC_DEFINE(HAVE_UCDN, 1, [Have UCDN Unicode functions]) +fi +AM_CONDITIONAL(HAVE_UCDN, $have_ucdn) + dnl ========================================================================== PKG_CHECK_MODULES(CAIRO, cairo >= 1.8.0, have_cairo=true, have_cairo=false)