aboutsummaryrefslogtreecommitdiffstats
path: root/dns
diff options
context:
space:
mode:
authormandree <mandree@FreeBSD.org>2015-12-29 19:14:59 +0800
committermandree <mandree@FreeBSD.org>2015-12-29 19:14:59 +0800
commit7af43780eb9c1e4daa7e3ffb6fcbb7728ee49b70 (patch)
treec29008256864e421efecec095333ca227dfe3e02 /dns
parent6eeae38903a308706ea657415d15fe2290b4794f (diff)
downloadfreebsd-ports-gnome-7af43780eb9c1e4daa7e3ffb6fcbb7728ee49b70.tar.gz
freebsd-ports-gnome-7af43780eb9c1e4daa7e3ffb6fcbb7728ee49b70.tar.zst
freebsd-ports-gnome-7af43780eb9c1e4daa7e3ffb6fcbb7728ee49b70.zip
Quench unused-parameter warnings during build.
Diffstat (limited to 'dns')
-rw-r--r--dns/dnsmasq-devel/Makefile2
-rw-r--r--dns/dnsmasq/Makefile2
2 files changed, 2 insertions, 2 deletions
diff --git a/dns/dnsmasq-devel/Makefile b/dns/dnsmasq-devel/Makefile
index 6063af1a8e29..3cbbba7489f8 100644
--- a/dns/dnsmasq-devel/Makefile
+++ b/dns/dnsmasq-devel/Makefile
@@ -21,7 +21,7 @@ PORTDOCS= CHANGELOG CHANGELOG.archive FAQ doc.html setup.html
SUB_FILES= pkg-message
-CFLAGS+= -Wall -Wno-unused-value
+CFLAGS+= -Wall -Wno-unused-value -Wno-unused-parameter
CPPFLAGS+= -I${LOCALBASE}/include
MAKE_ARGS= CC="${CC}" CFLAGS="${CFLAGS}" PREFIX="${PREFIX}" COPTS="${CFLAGS}" LIBS="${LDFLAGS}" RPM_OPT_FLAGS="${CPPFLAGS}"
diff --git a/dns/dnsmasq/Makefile b/dns/dnsmasq/Makefile
index 017c53c69868..a477e1876c04 100644
--- a/dns/dnsmasq/Makefile
+++ b/dns/dnsmasq/Makefile
@@ -19,7 +19,7 @@ PORTDOCS= CHANGELOG CHANGELOG.archive FAQ doc.html setup.html
SUB_FILES= pkg-message
-CFLAGS+= -Wall -Wno-unused-value
+CFLAGS+= -Wall -Wno-unused-value -Wno-unused-parameter
CPPFLAGS+= -I${LOCALBASE}/include
MAKE_ARGS= CC="${CC}" CFLAGS="${CFLAGS}" PREFIX="${PREFIX}" COPTS="${CFLAGS}" LIBS="${LDFLAGS}" RPM_OPT_FLAGS="${CPPFLAGS}"