ae1df831c0
... and propagate to reverse dependencies. Fixes (which I reproduced here): http://autobuild.buildroot.net/results/ea2/ea2c8f20c4032bf82876805ea787a55834091cec Should fix (which I did not even try to reproduce): http://autobuild.buildroot.net/results/4ef/4ef5bfc17f50bddb00f7ef3d62fc1fe963b7da82 http://autobuild.buildroot.net/results/76e/76e4854812b0ef3862c080eead4012b35ef27f0f http://autobuild.buildroot.net/results/5bf/5bfb3fd9fe61bef5f998dc5999ce2060c334662c http://autobuild.buildroot.net/results/dc6/dc607c35471ef6dda04e06ad05ae7794615af578 Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Cc: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Cc: Peter Korsgaard <jacmet@uclibc.org> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
43 lines
1.2 KiB
Plaintext
43 lines
1.2 KiB
Plaintext
config BR2_PACKAGE_AVAHI
|
|
bool "avahi"
|
|
# libdaemon uses fork()
|
|
depends on BR2_USE_MMU
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS
|
|
depends on !BR2_PREFER_STATIC_LIB
|
|
select BR2_PACKAGE_GETTEXT if BR2_NEEDS_GETTEXT_IF_LOCALE
|
|
help
|
|
Avahi is a system which facilitates service
|
|
discovery on a local network.
|
|
|
|
http://www.avahi.org/
|
|
|
|
if BR2_PACKAGE_AVAHI
|
|
|
|
config BR2_PACKAGE_AVAHI_AUTOIPD
|
|
bool "IPv4LL network address configuration daemon"
|
|
default y
|
|
select BR2_PACKAGE_LIBDAEMON
|
|
help
|
|
Avahi-autoipd implements IPv4LL, "Dynamic Configuration of
|
|
IPv4 Link-Local Addresses" (IETF RFC3927), a protocol for
|
|
automatic IP address configuration from the link-local
|
|
169.254.0.0/16 range without the need for a central server.
|
|
It is primarily intended to be used in ad-hoc networks which
|
|
lack a DHCP server.
|
|
|
|
config BR2_PACKAGE_AVAHI_DAEMON
|
|
bool "mDNS/DNS-SD daemon"
|
|
select BR2_PACKAGE_LIBDAEMON
|
|
select BR2_PACKAGE_EXPAT
|
|
help
|
|
The Avahi mDNS/DNS-SD daemon implementing Apple's ZeroConf
|
|
architecture (also known as "Rendezvous" or "Bonjour").
|
|
The daemon registers local IP addresses and services using
|
|
mDNS/DNS-SD.
|
|
|
|
endif
|
|
|
|
comment "avahi needs a toolchain w/ threads"
|
|
depends on BR2_USE_MMU
|
|
depends on !BR2_TOOLCHAIN_HAS_THREADS
|