diff options
author | Peter Korsgaard <jacmet@sunsite.dk> | 2009-11-22 21:03:42 +0100 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2009-11-22 21:03:42 +0100 |
commit | 351b679608e805ed1d6f27a1f6b5e2398eb3a5eb (patch) | |
tree | c8511a8e77a80adb06f59b7c1ca4cdebb58be278 /package/sdl/Config.in | |
parent | 3445ff4adebd3674d8e227479800efe987682d07 (diff) | |
download | buildroot-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.in | 11 |
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 |