Date: Mon, 10 Sep 2018 15:23:21 +0000 (UTC) From: Tobias Kortkamp <tobik@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r479431 - head/emulators/kcemu Message-ID: <201809101523.w8AFNLGV041424@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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}
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201809101523.w8AFNLGV041424>