buildroot/package/imlib2/Config.in
Adam Duskett 84cafb744c package/i*/Config.in: fix ordering of statements
The check-package script when ran gives warnings on ordering issues
on all of these Config files.  This patch cleans up all warnings
related to the ordering in the Config files for packages starting with
the letter i in the package directory.

The appropriate ordering is: type, default, depends on, select, help
See http://nightly.buildroot.org/#_config_files for more information.

Signed-off-by: Adam Duskett <Adamduskett@outlook.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
2017-05-01 11:36:01 +02:00

43 lines
940 B
Plaintext

comment "imlib2 needs a toolchain w/ dynamic library"
depends on BR2_STATIC_LIBS
config BR2_PACKAGE_IMLIB2
bool "imlib2"
depends on !BR2_STATIC_LIBS # dlopen()
select BR2_PACKAGE_FREETYPE
help
Imlib 2 is the successor to Imlib. This library provides
routines to load, save and render images in various formats.
http://freshmeat.net/projects/imlib2/
if BR2_PACKAGE_IMLIB2
config BR2_PACKAGE_IMLIB2_JPEG
bool "JPEG support"
select BR2_PACKAGE_JPEG
config BR2_PACKAGE_IMLIB2_PNG
bool "PNG support"
select BR2_PACKAGE_LIBPNG
config BR2_PACKAGE_IMLIB2_GIF
bool "GIF support"
select BR2_PACKAGE_GIFLIB
config BR2_PACKAGE_IMLIB2_TIFF
bool "TIFF support"
select BR2_PACKAGE_TIFF
config BR2_PACKAGE_IMLIB2_ID3
bool "ID3 support"
select BR2_PACKAGE_LIBID3TAG
config BR2_PACKAGE_IMLIB2_X
bool "X support"
default y
depends on BR2_PACKAGE_XORG7
select BR2_PACKAGE_XLIB_LIBXEXT
select BR2_PACKAGE_XLIB_LIBX11
endif