svn commit: r404736 - in head/dns: dnsmasq dnsmasq-devel

Matthias Andree mandree at FreeBSD.org
Tue Dec 29 11:15:01 UTC 2015


Author: mandree
Date: Tue Dec 29 11:14:59 2015
New Revision: 404736
URL: https://svnweb.freebsd.org/changeset/ports/404736

Log:
  Quench unused-parameter warnings during build.

Modified:
  head/dns/dnsmasq-devel/Makefile
  head/dns/dnsmasq/Makefile

Modified: head/dns/dnsmasq-devel/Makefile
==============================================================================
--- head/dns/dnsmasq-devel/Makefile	Tue Dec 29 11:06:26 2015	(r404735)
+++ head/dns/dnsmasq-devel/Makefile	Tue Dec 29 11:14:59 2015	(r404736)
@@ -21,7 +21,7 @@ PORTDOCS=	CHANGELOG CHANGELOG.archive FA
 
 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}"
 

Modified: head/dns/dnsmasq/Makefile
==============================================================================
--- head/dns/dnsmasq/Makefile	Tue Dec 29 11:06:26 2015	(r404735)
+++ head/dns/dnsmasq/Makefile	Tue Dec 29 11:14:59 2015	(r404736)
@@ -19,7 +19,7 @@ PORTDOCS=	CHANGELOG CHANGELOG.archive FA
 
 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}"
 


More information about the svn-ports-head mailing list