Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
D
Dnsmasq
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Packages
Packages
List
Container Registry
Analytics
Analytics
CI / CD
Code Review
Insights
Issues
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nanahira
Dnsmasq
Commits
3b323bda
Commit
3b323bda
authored
Feb 22, 2013
by
Simon Kelley
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
IPset support in debian build.
parent
13d86c73
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
9 additions
and
1 deletion
+9
-1
debian/changelog
debian/changelog
+2
-1
debian/readme
debian/readme
+1
-0
debian/rules
debian/rules
+6
-0
No files found.
debian/changelog
View file @
3b323bda
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
...
...
debian/readme
View file @
3b323bda
...
@@ -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
...
...
debian/rules
View file @
3b323bda
...
@@ -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
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment