xbmc: depends on package 'glu'

Signed-off-by: Stephan Raue <stephan@openelec.tv>
This commit is contained in:
Stephan Raue 2012-10-30 21:44:31 +01:00
parent eb019dbf27
commit ed6a7705d6
2 changed files with 4 additions and 4 deletions

View File

@ -31,7 +31,7 @@ else
XBMC_XORG="--disable-x11 --disable-xrandr"
fi
if [ "$OPENGL_SUPPORT" = yes ]; then
if [ "$OPENGL" = "Mesa" ]; then
XBMC_OPENGL="--enable-gl"
else
XBMC_OPENGL="--disable-gl"

View File

@ -60,10 +60,10 @@ if [ "$DISPLAYSERVER" = "xorg-server" ]; then
PKG_DEPENDS="$PKG_DEPENDS SDL SDL_image"
fi
if [ "$OPENGL_SUPPORT" = yes ]; then
if [ "$OPENGL" = "Mesa" ]; then
# for OpenGL (GLX) support
PKG_BUILD_DEPENDS="$PKG_BUILD_DEPENDS $OPENGL glew"
PKG_DEPENDS="$PKG_DEPENDS $OPENGL glew"
PKG_BUILD_DEPENDS="$PKG_BUILD_DEPENDS Mesa glu glew"
PKG_DEPENDS="$PKG_DEPENDS Mesa glu glew"
fi
if [ "$OPENGLES_SUPPORT" = yes ]; then