Config.in 804 B

123456789101112131415161718192021222324252627282930313233
  1. config BR2_PACKAGE_SDL2
  2. bool "sdl2"
  3. depends on !BR2_STATIC_LIBS
  4. help
  5. Simple DirectMedia Layer 2 - SDL2 is a library that allows
  6. programs portable low level access to a video framebuffer,
  7. audio output, mouse, and keyboard. It is not compatible with
  8. SDL1.
  9. http://www.libsdl.org/
  10. if BR2_PACKAGE_SDL2
  11. config BR2_PACKAGE_SDL2_DIRECTFB
  12. bool "DirectFB video driver"
  13. depends on BR2_PACKAGE_DIRECTFB
  14. comment "DirectFB video driver needs directfb"
  15. depends on !BR2_PACKAGE_DIRECTFB
  16. config BR2_PACKAGE_SDL2_X11
  17. bool "X11 video driver"
  18. depends on BR2_PACKAGE_XORG7
  19. select BR2_PACKAGE_XLIB_LIBX11
  20. select BR2_PACKAGE_XLIB_LIBXEXT
  21. comment "X11 video driver needs X.org"
  22. depends on !BR2_PACKAGE_XORG7
  23. endif
  24. comment "sdl2 needs a toolchain w/ dynamic library"
  25. depends on BR2_STATIC_LIBS