kumquat-buildroot/package/zlib/Config.in

48 lines
907 B
Plaintext
Raw Normal View History

2004-10-09 08:13:40 +02:00
config BR2_PACKAGE_ZLIB
bool "zlib support"
help
Select the desired Zlib library provider.
if BR2_PACKAGE_ZLIB
choice
prompt "zlib variant"
default BR2_PACKAGE_LIBZLIB
help
Select the desired Zlib library provider.
config BR2_PACKAGE_LIBZLIB
2004-10-14 22:33:45 +02:00
bool "zlib"
select BR2_PACKAGE_HAS_ZLIB
2004-10-09 08:13:40 +02:00
help
Standard (de)compression library. Used by things like
2004-10-14 22:33:45 +02:00
gzip and libpng.
2004-10-09 08:13:40 +02:00
http://www.zlib.net
config BR2_PACKAGE_ZLIB_NG
bool "zlib-ng"
select BR2_PACKAGE_HAS_ZLIB
help
Zlib replacement with optimizations for
"next generation" systems.
https://github.com/mtl1979/zlib-ng/tree/renamelib
endchoice
config BR2_PACKAGE_HAS_ZLIB
bool
config BR2_PACKAGE_PROVIDES_ZLIB
string
default "libzlib" if BR2_PACKAGE_LIBZLIB
default "zlib-ng" if BR2_PACKAGE_ZLIB_NG
endif
# ensure libzlib is used for the host variant
config BR2_PACKAGE_PROVIDES_HOST_ZLIB
string
default "host-libzlib"