2004-10-09 08:13:40 +02:00
|
|
|
config BR2_PACKAGE_ZLIB
|
2017-11-29 22:17:13 +01:00
|
|
|
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"
|
2017-11-29 22:17:13 +01:00
|
|
|
select BR2_PACKAGE_HAS_ZLIB
|
2004-10-09 08:13:40 +02:00
|
|
|
help
|
2015-04-23 00:14:34 +02:00
|
|
|
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
|
|
|
|
2016-12-18 21:15:58 +01:00
|
|
|
http://www.zlib.net
|
2017-11-29 22:17:13 +01:00
|
|
|
|
2017-11-29 22:17:14 +01:00
|
|
|
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
|
|
|
|
|
2017-11-29 22:17:13 +01:00
|
|
|
endchoice
|
|
|
|
|
|
|
|
config BR2_PACKAGE_HAS_ZLIB
|
|
|
|
bool
|
|
|
|
|
|
|
|
config BR2_PACKAGE_PROVIDES_ZLIB
|
|
|
|
string
|
|
|
|
default "libzlib" if BR2_PACKAGE_LIBZLIB
|
2017-11-29 22:17:14 +01:00
|
|
|
default "zlib-ng" if BR2_PACKAGE_ZLIB_NG
|
2017-11-29 22:17:13 +01:00
|
|
|
|
|
|
|
endif
|
|
|
|
|
|
|
|
# ensure libzlib is used for the host variant
|
|
|
|
config BR2_PACKAGE_PROVIDES_HOST_ZLIB
|
|
|
|
string
|
|
|
|
default "host-libzlib"
|