diff options
author | mandree <mandree@FreeBSD.org> | 2015-12-29 19:14:59 +0800 |
---|---|---|
committer | mandree <mandree@FreeBSD.org> | 2015-12-29 19:14:59 +0800 |
commit | 7af43780eb9c1e4daa7e3ffb6fcbb7728ee49b70 (patch) | |
tree | c29008256864e421efecec095333ca227dfe3e02 /dns | |
parent | 6eeae38903a308706ea657415d15fe2290b4794f (diff) | |
download | freebsd-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/Makefile | 2 | ||||
-rw-r--r-- | dns/dnsmasq/Makefile | 2 |
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}" |