Commit 3b323bda authored by Simon Kelley's avatar Simon Kelley

IPset support in debian build.

parent 13d86c73
dnsmasq (2.66-1) unstable; urgency=low dnsmasq (2.66-1) unstable; urgency=low
* New upstream. * New upstream.
* Add support for noipset in DEB_BUILD_OPTIONS.
-- Simon Kelley <simon@thekelleys.org.uk> Fri, 14 Dec 2012 11:58:41 +0000 -- Simon Kelley <simon@thekelleys.org.uk> Fri, 22 Feb 2013 21:52:13 +0000
dnsmasq (2.65-1) unstable; urgency=low dnsmasq (2.65-1) unstable; urgency=low
......
...@@ -59,6 +59,7 @@ Notes on configuring dnsmasq as packaged for Debian. ...@@ -59,6 +59,7 @@ Notes on configuring dnsmasq as packaged for Debian.
noipv6 : omit IPv6 support. noipv6 : omit IPv6 support.
nodbus : omit DBus support. nodbus : omit DBus support.
noconntrack : omit connection tracking support. noconntrack : omit connection tracking support.
noipset : omit IPset support.
nortc : compile alternate mode suitable for systems without an RTC. nortc : compile alternate mode suitable for systems without an RTC.
noi18n : omit translations and internationalisation support. noi18n : omit translations and internationalisation support.
noidn : omit international domain name support, must be noidn : omit international domain name support, must be
......
...@@ -33,6 +33,12 @@ ifeq ($(DEB_BUILD_ARCH_OS),linux) ...@@ -33,6 +33,12 @@ ifeq ($(DEB_BUILD_ARCH_OS),linux)
endif endif
endif endif
ifeq (,$(filter noipset,$(DEB_BUILD_OPTIONS)))
ifeq ($(DEB_BUILD_ARCH_OS),linux)
COPTS += -DHAVE_IPSET
endif
endif
ifneq (,$(filter nodhcp6,$(DEB_BUILD_OPTIONS))) ifneq (,$(filter nodhcp6,$(DEB_BUILD_OPTIONS)))
COPTS += -DNO_DHCP6 COPTS += -DNO_DHCP6
endif endif
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment