From: Peter Korsgaard Date: Sun, 12 Feb 2012 19:52:05 +0000 (+0100) Subject: libecore: fix build error when X support is disabled but host has X headers X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=342a3d8dab64c00a6132a1bb1adeab032ee344ca;p=buildroot.git libecore: fix build error when X support is disabled but host has X headers Forcibly disable imf-xim as it requires the X support. Signed-off-by: Peter Korsgaard --- diff --git a/package/efl/libecore/libecore.mk b/package/efl/libecore/libecore.mk index 8c462693e2..2b668ab94f 100644 --- a/package/efl/libecore/libecore.mk +++ b/package/efl/libecore/libecore.mk @@ -62,7 +62,7 @@ ifeq ($(BR2_PACKAGE_LIBECORE_X),y) LIBECORE_CONF_OPT += --enable-ecore-x LIBECORE_DEPENDENCIES += xlib_libXext xlib_libX11 else -LIBECORE_CONF_OPT += --disable-ecore-x +LIBECORE_CONF_OPT += --disable-ecore-x --disable-ecore-imf-xim endif ifeq ($(BR2_PACKAGE_LIBECORE_X_XCB),y)