diff --git a/configure.ac b/configure.ac index 2c1ba7f0..b9b7ff63 100644 --- a/configure.ac +++ b/configure.ac @@ -39,11 +39,13 @@ AC_ARG_ENABLE([ecore-imf], [AC_HELP_STRING([--disable-ecore-imf], [disable ecore-imf (Input Method Framework) usage. @<:@default=enabled@:>@])], [want_ecore_imf=$enableval], []) +AM_CONDITIONAL(HAVE_ECORE_IMF, false) if test "x$want_ecore_imf" != "xno"; then PKG_CHECK_MODULES([ECORE_IMF], [ecore-imf >= 1.2.0 ecore-imf-evas >= 1.2.0], [ AC_DEFINE([HAVE_ECORE_IMF], [1], [Input Method Support]) + AM_CONDITIONAL(HAVE_ECORE_IMF, true) have_ecore_imf="yes" requirements="ecore-imf-evas >= 1.2.0 ecore-imf >= 1.2.0 ${requirements}" ], diff --git a/src/bin/Makefile.am b/src/bin/Makefile.am index 10012fb7..a31b2607 100644 --- a/src/bin/Makefile.am +++ b/src/bin/Makefile.am @@ -8,6 +8,12 @@ terminology_CPPFLAGS = -I. \ terminology_LDADD = @TERMINOLOGY_LIBS@ +if HAVE_ECORE_IMF + +terminology_LDADD += @ECORE_IMF_LIBS@ + +endif + terminology_SOURCES = \ private.h \ col.c col.h \