From owner-svn-ports-all@freebsd.org Mon Sep 10 15:23:21 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 86DD11092EC3; Mon, 10 Sep 2018 15:23:21 +0000 (UTC) (envelope-from tobik@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 3D03886455; Mon, 10 Sep 2018 15:23:21 +0000 (UTC) (envelope-from tobik@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 37E0522DA; Mon, 10 Sep 2018 15:23:21 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w8AFNLA2041425; Mon, 10 Sep 2018 15:23:21 GMT (envelope-from tobik@FreeBSD.org) Received: (from tobik@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w8AFNLGV041424; Mon, 10 Sep 2018 15:23:21 GMT (envelope-from tobik@FreeBSD.org) Message-Id: <201809101523.w8AFNLGV041424@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tobik set sender to tobik@FreeBSD.org using -f From: Tobias Kortkamp Date: Mon, 10 Sep 2018 15:23:21 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r479431 - head/emulators/kcemu X-SVN-Group: ports-head X-SVN-Commit-Author: tobik X-SVN-Commit-Paths: head/emulators/kcemu X-SVN-Commit-Revision: 479431 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.27 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: Mon, 10 Sep 2018 15:23:21 -0000 Author: tobik Date: Mon Sep 10 15:23:20 2018 New Revision: 479431 URL: https://svnweb.freebsd.org/changeset/ports/479431 Log: emulators/kcemu: Fix build with Clang 6 n file included from plotter.cc:26: ../../../include/kc/plotter.h:31:23: error: in-class initializer for static data member of type 'const double' requires 'constexpr' specifier [-Wstatic-float-init] static const double WIDTH_MM = 210.0; ^ ~~~~~ http://beefy12.nyi.freebsd.org/data/head-amd64-default/p479076_s338486/logs/errors/kcemu-0.5.1_15.log PR: 230960 Approved by: hardy.schumacher@gmx.de (maintainer timeout, 2 weeks) Modified: head/emulators/kcemu/Makefile Modified: head/emulators/kcemu/Makefile ============================================================================== --- head/emulators/kcemu/Makefile Mon Sep 10 15:20:46 2018 (r479430) +++ head/emulators/kcemu/Makefile Mon Sep 10 15:23:20 2018 (r479431) @@ -26,6 +26,7 @@ GNU_CONFIGURE= yes USE_XORG= xmu USE_GNOME= gtk20 USES= gettext ncurses pkgconfig +USE_CXXSTD= gnu++98 LDFLAGS+= -L${LOCALBASE}/lib WRKSRC= ${WRKDIR}/KCemu-${PORTVERSION}