381616e77a
Currently, when we need to do a conditional on the type of C library used, we need to take into account the three toolchain backends. As we are going to add eglibc support to the Buildroot toolchain backend, it would become even uglier, so this patch introduces two new hidden options: BR2_TOOLCHAIN_USES_UCLIBC and BR2_TOOLCHAIN_USES_GLIBC, that exist regardless of the toolchain backend. The entire Buildroot code base is converted to use those options. Note that we have intentionally created only one option (BR2_TOOLCHAIN_USES_GLIBC) for both glibc and eglibc, since they are essentially the same, as far as Buildroot is concerned. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
16 lines
558 B
Plaintext
16 lines
558 B
Plaintext
config BR2_PACKAGE_NSS_MDNS
|
|
bool "nss-mdns"
|
|
# libdaemon->avahi uses fork()
|
|
depends on BR2_USE_MMU
|
|
depends on BR2_TOOLCHAIN_USES_GLIBC
|
|
depends on BR2_PACKAGE_AVAHI_DAEMON
|
|
help
|
|
nss-mdns is a plugin for the GNU Name Service Switch (NSS)
|
|
functionality of the GNU C Library (glibc) providing host
|
|
name resolution via Multicast DNS (aka Zeroconf, aka Apple
|
|
Rendezvous, aka Apple Bonjour), effectively allowing name
|
|
resolution by common Unix/Linux programs in the ad-hoc
|
|
mDNS domain .local.
|
|
|
|
http://0pointer.de/lennart/projects/nss-mdns/
|