terminology: Fix ecore-imf DSO missing flag.

SVN revision: 72428
This commit is contained in:
Rafael Antognolli 2012-06-19 01:02:19 +00:00
parent 4f4dd65c97
commit ec18871272
2 changed files with 8 additions and 0 deletions

View File

@ -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}"
],

View File

@ -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 \