Config.in 695 B

123456789101112131415161718192021222324252627282930313233
  1. config BR2_PACKAGE_FBV
  2. bool "fbv"
  3. help
  4. fbv is a very simple graphic file viewer for the framebuffer
  5. console, capable of displaying GIF, JPEG, PNG and BMP files
  6. using libungif, libjpeg and libpng.
  7. http://freshmeat.net/projects/fbv/
  8. if BR2_PACKAGE_FBV
  9. config BR2_PACKAGE_FBV_PNG
  10. bool "PNG support"
  11. default y
  12. select BR2_PACKAGE_LIBPNG
  13. help
  14. Enable support for PNG using libpng.
  15. config BR2_PACKAGE_FBV_JPEG
  16. bool "JPEG support"
  17. default y
  18. select BR2_PACKAGE_JPEG
  19. help
  20. Enable support for JPEG using IJG's libjpeg.
  21. config BR2_PACKAGE_FBV_GIF
  22. bool "GIF support"
  23. default y
  24. select BR2_PACKAGE_GIFLIB
  25. help
  26. Enable support for GIF using giflib.
  27. endif # BR2_PACKAGE_FBV