Config.in 940 B

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