From owner-svn-ports-all@freebsd.org Sun Aug 13 11:13:01 2017 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4018EDD9101; Sun, 13 Aug 2017 11:13:01 +0000 (UTC) (envelope-from rakuco@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 mx1.freebsd.org (Postfix) with ESMTPS id 0C9FA69CE8; Sun, 13 Aug 2017 11:13:00 +0000 (UTC) (envelope-from rakuco@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v7DBD0lf025443; Sun, 13 Aug 2017 11:13:00 GMT (envelope-from rakuco@FreeBSD.org) Received: (from rakuco@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v7DBD0jO025442; Sun, 13 Aug 2017 11:13:00 GMT (envelope-from rakuco@FreeBSD.org) Message-Id: <201708131113.v7DBD0jO025442@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rakuco set sender to rakuco@FreeBSD.org using -f From: Raphael Kubo da Costa Date: Sun, 13 Aug 2017 11:13:00 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r447877 - head/lang/cint X-SVN-Group: ports-head X-SVN-Commit-Author: rakuco X-SVN-Commit-Paths: head/lang/cint X-SVN-Commit-Revision: 447877 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.23 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, 13 Aug 2017 11:13:01 -0000 Author: rakuco Date: Sun Aug 13 11:12:59 2017 New Revision: 447877 URL: https://svnweb.freebsd.org/changeset/ports/447877 Log: Explicitly pass -std=gnu++03 to the build. This allows the port to build with GCC 6, which defaults to -std=gnu++14. The port's code does not work with C++11 or later. PR: 217008 Approved by: maintainer timeout (fjoe, 16 days) Modified: head/lang/cint/Makefile Modified: head/lang/cint/Makefile ============================================================================== --- head/lang/cint/Makefile Sun Aug 13 11:10:47 2017 (r447876) +++ head/lang/cint/Makefile Sun Aug 13 11:12:59 2017 (r447877) @@ -22,6 +22,10 @@ USES= gmake readline tar:tgz USE_LDCONFIG= ${PREFIX}/lib/cint ALL_TARGET= +# The port does not build with C++11/C++14, so explicitly use an older +# standard. +USE_CXXSTD= gnu++03 + INSTALL_ARGS= --bindir=${STAGEDIR}${PREFIX}/bin\ --libdir=${STAGEDIR}${PREFIX}/lib/cint\ --mandir=${STAGEDIR}${PREFIX}/man\