From owner-svn-src-all@FreeBSD.ORG Thu Sep 5 06:58:50 2013 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id C604EC3F; Thu, 5 Sep 2013 06:58:50 +0000 (UTC) (envelope-from erwin@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 986DA2FB9; Thu, 5 Sep 2013 06:58:50 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r856woNk098175; Thu, 5 Sep 2013 06:58:50 GMT (envelope-from erwin@svn.freebsd.org) Received: (from erwin@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r856woYO098172; Thu, 5 Sep 2013 06:58:50 GMT (envelope-from erwin@svn.freebsd.org) Message-Id: <201309050658.r856woYO098172@svn.freebsd.org> From: Erwin Lansing Date: Thu, 5 Sep 2013 06:58:50 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-9@freebsd.org Subject: svn commit: r255233 - in stable/9/usr.bin: dig host nslookup X-SVN-Group: stable-9 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 05 Sep 2013 06:58:50 -0000 Author: erwin Date: Thu Sep 5 06:58:49 2013 New Revision: 255233 URL: http://svnweb.freebsd.org/changeset/base/255233 Log: MFC r255056 Reduce WARNS to 0 for dig, host, and nslookup to make them compile with the optional WITH_BIND_SIGCHASE. Submitted by: Andre Albsmeier Approved by: delphij (mentor, implicit) Sponsored by: DK Hostmaster A/S Modified: stable/9/usr.bin/dig/Makefile stable/9/usr.bin/host/Makefile stable/9/usr.bin/nslookup/Makefile Directory Properties: stable/9/usr.bin/dig/ (props changed) stable/9/usr.bin/host/ (props changed) stable/9/usr.bin/nslookup/ (props changed) Modified: stable/9/usr.bin/dig/Makefile ============================================================================== --- stable/9/usr.bin/dig/Makefile Thu Sep 5 05:51:15 2013 (r255232) +++ stable/9/usr.bin/dig/Makefile Thu Sep 5 06:58:49 2013 (r255233) @@ -20,7 +20,7 @@ CFLAGS+= -DWITH_IDN -I/usr/local/include CFLAGS+= -L/usr/local/lib -lidnkit -R/usr/local/lib -liconv .endif -WARNS?= 1 +WARNS?= 0 DPADD+= ${BIND_DPADD} ${CRYPTO_DPADD} ${PTHREAD_DPADD} LDADD+= ${BIND_LDADD} ${CRYPTO_LDADD} ${PTHREAD_LDADD} Modified: stable/9/usr.bin/host/Makefile ============================================================================== --- stable/9/usr.bin/host/Makefile Thu Sep 5 05:51:15 2013 (r255232) +++ stable/9/usr.bin/host/Makefile Thu Sep 5 06:58:49 2013 (r255233) @@ -15,7 +15,7 @@ SRCS+= dighost.c host.c CFLAGS+= -I${SRCDIR}/include CFLAGS+= -I${BIND_DIR}/lib/isc/${ISC_ATOMIC_ARCH}/include -WARNS?= 1 +WARNS?= 0 DPADD+= ${BIND_DPADD} ${CRYPTO_DPADD} ${PTHREAD_DPADD} LDADD+= ${BIND_LDADD} ${CRYPTO_LDADD} ${PTHREAD_LDADD} Modified: stable/9/usr.bin/nslookup/Makefile ============================================================================== --- stable/9/usr.bin/nslookup/Makefile Thu Sep 5 05:51:15 2013 (r255232) +++ stable/9/usr.bin/nslookup/Makefile Thu Sep 5 06:58:49 2013 (r255233) @@ -18,7 +18,7 @@ CFLAGS+= -I${BIND_DIR}/lib/isc/${ISC_ATO DPADD+= ${BIND_DPADD} ${CRYPTO_DPADD} ${PTHREAD_DPADD} ${LIBEDIT} LDADD+= ${BIND_LDADD} ${CRYPTO_LDADD} ${PTHREAD_LDADD} ${LIBEDIT} -WARNS?= 1 +WARNS?= 0 MANFILTER= sed -e "s@^host \[server\]@\\\fBhost\\\fR \\\fI[server]\\\fR@"