summaryrefslogtreecommitdiffstats
path: root/package/sdl/Config.in
diff options
context:
space:
mode:
authorPeter Korsgaard <jacmet@sunsite.dk>2009-11-22 21:03:42 +0100
committerPeter Korsgaard <jacmet@sunsite.dk>2009-11-22 21:03:42 +0100
commit351b679608e805ed1d6f27a1f6b5e2398eb3a5eb (patch)
treec8511a8e77a80adb06f59b7c1ca4cdebb58be278 /package/sdl/Config.in
parent3445ff4adebd3674d8e227479800efe987682d07 (diff)
downloadbuildroot-novena-351b679608e805ed1d6f27a1f6b5e2398eb3a5eb.tar.gz
buildroot-novena-351b679608e805ed1d6f27a1f6b5e2398eb3a5eb.zip
package/sdl: fix dependencies for directfb/qt/x11 support
Closes #683 And cleanup Kconfig while we're at it. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'package/sdl/Config.in')
-rw-r--r--package/sdl/Config.in11
1 files changed, 8 insertions, 3 deletions
diff --git a/package/sdl/Config.in b/package/sdl/Config.in
index 7cba524f3..869173d88 100644
--- a/package/sdl/Config.in
+++ b/package/sdl/Config.in
@@ -1,11 +1,13 @@
config BR2_PACKAGE_SDL
bool "SDL"
help
+ Simple DirectMedia Layer - SDL is a library that allows
+ programs portable low level access to a video framebuffer,
+ audio output, mouse, and keyboard.
http://www.libsdl.org/
-menu "SDL options selection"
- depends on BR2_PACKAGE_SDL
+if BR2_PACKAGE_SDL
config BR2_PACKAGE_SDL_FBCON
bool "SDL framebuffer console video driver"
@@ -13,11 +15,14 @@ config BR2_PACKAGE_SDL_FBCON
config BR2_PACKAGE_SDL_DIRECTFB
bool "SDL DirectFB video driver"
+ depends on BR2_PACKAGE_DIRECTFB
config BR2_PACKAGE_SDL_QTOPIA
bool "SDL Qtopia video driver"
+ depends on BR2_PACKAGE_QT
config BR2_PACKAGE_SDL_X11
bool "SDL X11 video driver"
+ depends on BR2_PACKAGE_XORG7
-endmenu
+endif