From owner-svn-ports-all@freebsd.org Sun Feb 18 08:49:15 2018 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A1800F1FFDC; Sun, 18 Feb 2018 08:49:15 +0000 (UTC) (envelope-from riggs@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 507AE6C0BA; Sun, 18 Feb 2018 08:49:15 +0000 (UTC) (envelope-from riggs@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 4B6CE1707; Sun, 18 Feb 2018 08:49:15 +0000 (UTC) (envelope-from riggs@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w1I8nFVX012186; Sun, 18 Feb 2018 08:49:15 GMT (envelope-from riggs@FreeBSD.org) Received: (from riggs@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w1I8nF1K012185; Sun, 18 Feb 2018 08:49:15 GMT (envelope-from riggs@FreeBSD.org) Message-Id: <201802180849.w1I8nF1K012185@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: riggs set sender to riggs@FreeBSD.org using -f From: Thomas Zander Date: Sun, 18 Feb 2018 08:49:15 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r462207 - head/audio/aacgain X-SVN-Group: ports-head X-SVN-Commit-Author: riggs X-SVN-Commit-Paths: head/audio/aacgain X-SVN-Commit-Revision: 462207 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 18 Feb 2018 08:49:15 -0000 Author: riggs Date: Sun Feb 18 08:49:14 2018 New Revision: 462207 URL: https://svnweb.freebsd.org/changeset/ports/462207 Log: Fix build on clang 6.0.0 Modified: head/audio/aacgain/Makefile Modified: head/audio/aacgain/Makefile ============================================================================== --- head/audio/aacgain/Makefile Sun Feb 18 08:41:33 2018 (r462206) +++ head/audio/aacgain/Makefile Sun Feb 18 08:49:14 2018 (r462207) @@ -3,7 +3,7 @@ PORTNAME= aacgain PORTVERSION= 1.8 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= audio MASTER_SITES= http://aacgain.altosdesign.com/alvarez/ @@ -13,5 +13,7 @@ COMMENT= Normalizes the volume of mp3 and AAC (mp4/m4a GNU_CONFIGURE= yes USES= gmake libtool tar:bzip2 PLIST_FILES= bin/aacgain + +CXXFLAGS+= --std=c++98 .include