libevas: x11 glx option needs Xrender, Xext and libeet

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
This commit is contained in:
Peter Korsgaard 2012-02-07 23:13:25 +01:00
parent 57c7706bac
commit a5617a52d0
2 changed files with 5 additions and 1 deletions

View File

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

View File

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