buildroot/package/dnsmasq/Config.in
Baruch Siach 3aa870f192 package/dnsmasq: bump to version 2.81
Drop upstream patches.

Remove CVE annotation; issue fixed upstream.

Depend on MMU. Upstream removed support for fork-less targets (commit
48d12f14c9c).

Reformat hashes file with two spaces delimiter. Remove stale 2.79
tarball hash entry.

Cc: Matt Weber <matthew.weber@rockwellcollins.com>
Signed-off-by: Baruch Siach <baruch@tkos.co.il>
Reviewed-by: Matt Weber <matthew.weber@rockwellcollins.com>
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
2020-04-13 23:06:21 +02:00

52 lines
1.1 KiB
Plaintext

config BR2_PACKAGE_DNSMASQ
bool "dnsmasq"
depends on BR2_USE_MMU # fork()
help
A lightweight DNS and DHCP server. It is intended to provide
coupled DNS and DHCP service to a LAN.
http://www.thekelleys.org.uk/dnsmasq/doc.html
if BR2_PACKAGE_DNSMASQ
config BR2_PACKAGE_DNSMASQ_TFTP
bool "tftp support"
default y
help
Enable TFTP support in dnsmasq.
config BR2_PACKAGE_DNSMASQ_DHCP
bool "dhcp support"
default y
help
Enable DHCP server support in dnsmasq.
config BR2_PACKAGE_DNSMASQ_DNSSEC
bool "DNSSEC support"
select BR2_PACKAGE_GMP
select BR2_PACKAGE_NETTLE
help
Enable DNSSEC validation and caching support.
config BR2_PACKAGE_DNSMASQ_IDN
bool "IDN support"
select BR2_PACKAGE_LIBIDN2 if !BR2_PACKAGE_LIBIDN
help
Enable IDN support in dnsmasq.
This option is a big space taker since it pulls in many
libraries.
config BR2_PACKAGE_DNSMASQ_LUA
bool "Lua scripting support"
depends on BR2_PACKAGE_LUA
help
Enable Lua scripting for dnsmasq
config BR2_PACKAGE_DNSMASQ_CONNTRACK
bool "conntrack marking support"
select BR2_PACKAGE_LIBNETFILTER_CONNTRACK
help
Enable DNS query connection marking in netfilter.
endif