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