buildroot/package/sdl_image/Config.in
Thomas Petazzoni 84d8cf9fbe package/sdl_image: reduce the length of option prompts
It's really not necessary to have each option for the different file
formats named "enable XYZ file format support". Saying "XYZ support" is
sufficient.

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
2016-07-04 23:13:51 +02:00

58 lines
1.1 KiB
Plaintext

menuconfig BR2_PACKAGE_SDL_IMAGE
bool "SDL_image"
depends on BR2_PACKAGE_SDL
help
SDL_image is an image file loading library. It loads images
as SDL surfaces, and supports the following formats:
BMP, GIF, JPEG, LBM, PCX, PNG, PNM, TGA, TIFF, XCF, XPM, XV.
http://www.libsdl.org/projects/SDL_image/
if BR2_PACKAGE_SDL_IMAGE
config BR2_PACKAGE_SDL_IMAGE_BMP
bool "BMP support"
default y
config BR2_PACKAGE_SDL_IMAGE_GIF
bool "GIF support"
config BR2_PACKAGE_SDL_IMAGE_JPEG
bool "JPEG support"
select BR2_PACKAGE_JPEG
config BR2_PACKAGE_SDL_IMAGE_LBM
bool "LBM support"
config BR2_PACKAGE_SDL_IMAGE_PCX
bool "PCX support"
config BR2_PACKAGE_SDL_IMAGE_PNG
bool "PNG support"
select BR2_PACKAGE_LIBPNG
config BR2_PACKAGE_SDL_IMAGE_PNM
bool "PNM support"
config BR2_PACKAGE_SDL_IMAGE_TARGA
bool "TARGA support"
config BR2_PACKAGE_SDL_IMAGE_TIFF
bool "TIFF support"
select BR2_PACKAGE_TIFF
config BR2_PACKAGE_SDL_IMAGE_WEBP
bool "WEBP support"
select BR2_PACKAGE_WEBP
config BR2_PACKAGE_SDL_IMAGE_XCF
bool "XCF support"
config BR2_PACKAGE_SDL_IMAGE_XPM
bool "XPM support"
config BR2_PACKAGE_SDL_IMAGE_XV
bool "XV support"
endif