SDL: depends on package 'glu'

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

View File

@ -34,7 +34,7 @@ else
SDL_X11="$SDL_X11 --disable-video-x11-vm --disable-video-x11-xv --without-x"
fi
if [ "$OPENGL_SUPPORT" = yes ]; then
if [ "$OPENGL" = "Mesa" ]; then
SDL_OPENGL="--enable-video-opengl"
else
SDL_OPENGL="--disable-video-opengl"

View File

@ -40,9 +40,9 @@ if [ "$DISPLAYSERVER" = "xorg-server" ]; then
PKG_BUILD_DEPENDS="$PKG_BUILD_DEPENDS libX11 libXrandr"
fi
if [ "$OPENGL_SUPPORT" = yes ]; then
PKG_DEPENDS="$PKG_DEPENDS $OPENGL"
PKG_BUILD_DEPENDS="$PKG_BUILD_DEPENDS $OPENGL"
if [ "$OPENGL" = "Mesa" ]; then
PKG_DEPENDS="$PKG_DEPENDS Mesa glu"
PKG_BUILD_DEPENDS="$PKG_BUILD_DEPENDS Mesa glu"
fi
if [ "$PULSEAUDIO_SUPPORT" = yes ]; then