Config.in 819 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. config BR2_PACKAGE_IMLIB2
  2. bool "imlib2"
  3. select BR2_PACKAGE_FREETYPE
  4. help
  5. Imlib 2 is the successor to Imlib. This library provides
  6. routines to load, save and render images in various formats.
  7. http://freshmeat.net/projects/imlib2/
  8. if BR2_PACKAGE_IMLIB2
  9. config BR2_PACKAGE_IMLIB2_JPEG
  10. bool "JPEG support"
  11. select BR2_PACKAGE_JPEG
  12. config BR2_PACKAGE_IMLIB2_PNG
  13. bool "PNG support"
  14. select BR2_PACKAGE_LIBPNG
  15. config BR2_PACKAGE_IMLIB2_GIF
  16. bool "GIF support"
  17. select BR2_PACKAGE_LIBUNGIF
  18. config BR2_PACKAGE_IMLIB2_TIFF
  19. bool "TIFF support"
  20. select BR2_PACKAGE_TIFF
  21. config BR2_PACKAGE_IMLIB2_ID3
  22. bool "ID3 support"
  23. select BR2_PACKAGE_LIBID3TAG
  24. config BR2_PACKAGE_IMLIB2_X
  25. bool "X support"
  26. default y
  27. depends on BR2_PACKAGE_XORG7
  28. select BR2_PACKAGE_XLIB_LIBXEXT
  29. select BR2_PACKAGE_XLIB_LIBX11
  30. endif