Config.in 696 B

123456789101112131415161718192021222324
  1. config BR2_PACKAGE_LINKS
  2. bool "links"
  3. depends on BR2_USE_MMU # fork()
  4. help
  5. Graphics and text mode WWW browser (kind of like lynx).
  6. http://links.twibright.com/
  7. if BR2_PACKAGE_LINKS
  8. config BR2_PACKAGE_LINKS_GRAPHICS
  9. bool "use graphics"
  10. depends on BR2_PACKAGE_GPM || BR2_PACKAGE_DIRECTFB || BR2_PACKAGE_XORG7
  11. select BR2_PACKAGE_XLIB_LIBXT if BR2_PACKAGE_XORG7
  12. select BR2_PACKAGE_LIBPNG
  13. help
  14. Enable graphics output for framebuffer, DirectFB or X11.
  15. Framebuffer output requires GPM (console mouse).
  16. Otherwise links will be text-mode only.
  17. comment "links graphics needs GPM, DirectFB or X11"
  18. depends on !BR2_PACKAGE_GPM && !BR2_PACKAGE_DIRECTFB && !BR2_PACKAGE_XORG7
  19. endif