665e13c85e
Since a while, the semantic of BR2_PREFER_STATIC_LIB has been changed from "prefer static libraries when possible" to "use only static libraries". The former semantic didn't make much sense, since the user had absolutely no control/idea of which package would use static libraries, and which packages would not. Therefore, for quite some time, we have been starting to enforce that BR2_PREFER_STATIC_LIB should really build everything with static libraries. As a consequence, this patch renames BR2_PREFER_STATIC_LIB to BR2_STATIC_LIBS, and adjust the Config.in option accordingly. This also helps preparing the addition of other options to select shared, shared+static or just static. Note that we have verified that this commit can be reproduced by simply doing a global rename of BR2_PREFER_STATIC_LIB to BR2_STATIC_LIBS plus adding BR2_PREFER_STATIC_LIB to Config.in.legacy. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Reviewed-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
45 lines
1.4 KiB
Plaintext
45 lines
1.4 KiB
Plaintext
config BR2_PACKAGE_BIND
|
|
bool "bind"
|
|
depends on BR2_INET_IPV6
|
|
depends on BR2_LARGEFILE
|
|
depends on BR2_USE_MMU # fork()
|
|
depends on !BR2_STATIC_LIBS
|
|
help
|
|
BIND (Berkeley Internet Name Domain) is an implementation of
|
|
the Domain Name System (DNS) protocols and provides an openly
|
|
redistributable reference implementation of the major
|
|
components of the Domain Name System, including:
|
|
|
|
* a Domain Name System server (named)
|
|
* a Domain Name System resolver library
|
|
* tools for verifying the proper operation of the DNS server
|
|
|
|
The BIND DNS Server is used on the vast majority of name
|
|
serving machines on the Internet, providing a robust and
|
|
stable architecture on top of which an organization's naming
|
|
architecture can be built. The resolver library included in
|
|
the BIND distribution provides the standard APIs for
|
|
translation between domain names and Internet addresses and is
|
|
intended to be linked with applications requiring name service.
|
|
|
|
http://www.isc.org/sw/bind/
|
|
|
|
if BR2_PACKAGE_BIND
|
|
|
|
config BR2_PACKAGE_BIND_SERVER
|
|
bool "Install server components"
|
|
default y
|
|
help
|
|
Install server components (named, lwresd)
|
|
|
|
config BR2_PACKAGE_BIND_TOOLS
|
|
bool "Install tools"
|
|
help
|
|
Install tools (dig, host, nslookup, nsupdate)
|
|
|
|
endif
|
|
|
|
comment "bind needs a toolchain w/ largefile, IPv6, dynamic library"
|
|
depends on BR2_USE_MMU
|
|
depends on !BR2_LARGEFILE || !BR2_INET_IPV6 || BR2_STATIC_LIBS
|