diff options
author | Gustavo Zacarias <gustavo@zacarias.com.ar> | 2012-03-13 10:20:15 -0300 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2012-03-13 14:47:41 +0100 |
commit | f1e2288d157b5cd8b4b8a037dfb77eb804703a53 (patch) | |
tree | e7d6367a90ee6db08e9ce662889d3ff884d2b4eb /package/dnsmasq/Config.in | |
parent | d77ff16b11bde9832914224794ca07312711d0bd (diff) | |
download | buildroot-novena-f1e2288d157b5cd8b4b8a037dfb77eb804703a53.tar.gz buildroot-novena-f1e2288d157b5cd8b4b8a037dfb77eb804703a53.zip |
dnsmasq: bump to version 2.60
Bump to version 2.60 of dnsmasq with the new lua scripting option.
Switch LDFLAGS from MAKE_ENV to MAKE_OPT to make it work properly.
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'package/dnsmasq/Config.in')
-rw-r--r-- | package/dnsmasq/Config.in | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/package/dnsmasq/Config.in b/package/dnsmasq/Config.in index e9c4870af..f434b8ba5 100644 --- a/package/dnsmasq/Config.in +++ b/package/dnsmasq/Config.in @@ -6,26 +6,33 @@ config BR2_PACKAGE_DNSMASQ http://www.thekelleys.org.uk/dnsmasq/ +if BR2_PACKAGE_DNSMASQ + config BR2_PACKAGE_DNSMASQ_TFTP bool "tftp support" default y - depends on BR2_PACKAGE_DNSMASQ help Enable TFTP support in dnsmasq. config BR2_PACKAGE_DNSMASQ_DHCP bool "dhcp support" default y - depends on BR2_PACKAGE_DNSMASQ help Enable DHCP server support in dnsmasq. config BR2_PACKAGE_DNSMASQ_IDN bool "IDN support (BIG!)" - depends on BR2_PACKAGE_DNSMASQ depends on BR2_USE_WCHAR select BR2_PACKAGE_LIBINTL select BR2_PACKAGE_LIBIDN help Enable IDN support in dnsmasq. This option is a big space taker since is pulls in many libraries. + +config BR2_PACKAGE_DNSMASQ_LUA + bool "Lua scripting support" + select BR2_PACKAGE_LUA + help + Enable lua scripting for dnsmasq + +endif |