From owner-svn-src-all@FreeBSD.ORG Fri Feb 21 14:14:48 2014 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id EDCAACB2; Fri, 21 Feb 2014 14:14:48 +0000 (UTC) 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 D9AF612E0; Fri, 21 Feb 2014 14:14:48 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s1LEEmdq089598; Fri, 21 Feb 2014 14:14:48 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s1LEEm9Y089596; Fri, 21 Feb 2014 14:14:48 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201402211414.s1LEEm9Y089596@svn.freebsd.org> From: Baptiste Daroussin Date: Fri, 21 Feb 2014 14:14:48 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r262297 - head/libexec/dma X-SVN-Group: head 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.17 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: Fri, 21 Feb 2014 14:14:49 -0000 Author: bapt Date: Fri Feb 21 14:14:48 2014 New Revision: 262297 URL: http://svnweb.freebsd.org/changeset/base/262297 Log: Lower warning level when built with gcc Modified: head/libexec/dma/Makefile Modified: head/libexec/dma/Makefile ============================================================================== --- head/libexec/dma/Makefile Fri Feb 21 13:53:41 2014 (r262296) +++ head/libexec/dma/Makefile Fri Feb 21 14:14:48 2014 (r262297) @@ -31,4 +31,10 @@ CLEANFILES= aliases_parse.i BINGRP= mail BINMODE= 2555 +.include + +.if ${COMPILER_TYPE} == gcc +WARNS= 5 +.endif + .include