From owner-svn-ports-all@freebsd.org Tue Jan 9 20:53:25 2018 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 9EE2FE71D2E; Tue, 9 Jan 2018 20:53:25 +0000 (UTC) (envelope-from rakuco@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 7A88D70707; Tue, 9 Jan 2018 20:53:25 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id CC8E81C1DC; Tue, 9 Jan 2018 20:53:24 +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 w09KrOMR098433; Tue, 9 Jan 2018 20:53:24 GMT (envelope-from rakuco@FreeBSD.org) Received: (from rakuco@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w09KrOeA098432; Tue, 9 Jan 2018 20:53:24 GMT (envelope-from rakuco@FreeBSD.org) Message-Id: <201801092053.w09KrOeA098432@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rakuco set sender to rakuco@FreeBSD.org using -f From: Raphael Kubo da Costa Date: Tue, 9 Jan 2018 20:53:24 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r458571 - head/math/rocs X-SVN-Group: ports-head X-SVN-Commit-Author: rakuco X-SVN-Commit-Paths: head/math/rocs X-SVN-Commit-Revision: 458571 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: Tue, 09 Jan 2018 20:53:25 -0000 Author: rakuco Date: Tue Jan 9 20:53:24 2018 New Revision: 458571 URL: https://svnweb.freebsd.org/changeset/ports/458571 Log: Explicitly build with -std=gnu++98 clang 6.0 will default to -std=gnu++14, which breaks the build: /wrkdirs/usr/ports/math/rocs/work/rocs-4.14.3/VisualEditor/Actions/SelectMoveHandAction.cpp:86:52: error: no viable conversion from 'int' to 'QPainter::RenderHints' (aka 'QFlags') _graphScene->views().at(0)->setRenderHints(QPainter::Antialiasing PR: 224945 Modified: head/math/rocs/Makefile Modified: head/math/rocs/Makefile ============================================================================== --- head/math/rocs/Makefile Tue Jan 9 20:51:38 2018 (r458570) +++ head/math/rocs/Makefile Tue Jan 9 20:53:24 2018 (r458571) @@ -16,4 +16,9 @@ USE_QT4= gui qtestlib script scripttools webkit xml \ moc_build qmake_build rcc_build uic_build USE_LDCONFIG= yes +# clang 6.0 defaults to -std=gnu++14, which breaks the build: +# /wrkdirs/usr/ports/math/rocs/work/rocs-4.14.3/VisualEditor/Actions/SelectMoveHandAction.cpp:86:52: error: no viable conversion from 'int' to 'QPainter::RenderHints' (aka 'QFlags') +# _graphScene->views().at(0)->setRenderHints(QPainter::Antialiasing +USE_CXXSTD= gnu++98 + .include