From: Peter Korsgaard Date: Tue, 7 Feb 2012 22:13:25 +0000 (+0100) Subject: libevas: x11 glx option needs Xrender, Xext and libeet X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=a5617a52d0401a42a70f733bb3f593497f117f2d;p=buildroot.git libevas: x11 glx option needs Xrender, Xext and libeet Signed-off-by: Peter Korsgaard --- diff --git a/package/efl/libevas/Config.in b/package/efl/libevas/Config.in index f5e79b3ced..e2f5349d70 100644 --- a/package/efl/libevas/Config.in +++ b/package/efl/libevas/Config.in @@ -98,7 +98,10 @@ config BR2_PACKAGE_LIBEVAS_X11_GLX bool "libevas X11 GLX backend" depends on BR2_PACKAGE_XORG7 select BR2_PACKAGE_XLIB_LIBX11 + select BR2_PACKAGE_XLIB_LIBXRENDER + select BR2_PACKAGE_XLIB_LIBXEXT select BR2_PACKAGE_XPROTO_GLPROTO + select BR2_PACKAGE_LIBEET help This enables the OpenGL X11 rendering engine that renders using GLX which may be hardware accelerated. diff --git a/package/efl/libevas/libevas.mk b/package/efl/libevas/libevas.mk index 7758b183c2..14f49bb6d2 100644 --- a/package/efl/libevas/libevas.mk +++ b/package/efl/libevas/libevas.mk @@ -65,7 +65,8 @@ endif ifeq ($(BR2_PACKAGE_LIBEVAS_X11_GLX),y) LIBEVAS_CONF_OPT += --enable-gl-xlib -LIBEVAS_DEPENDENCIES += xproto_glproto xlib_libX11 +LIBEVAS_DEPENDENCIES += xproto_glproto xlib_libX11 xlib_libXrender \ + xlib_libXext libeet endif ifeq ($(BR2_PACKAGE_LIBEVAS_XCB),y)