svn commit: r479431 - head/emulators/kcemu

Tobias Kortkamp tobik at FreeBSD.org
Mon Sep 10 15:23:21 UTC 2018


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 at 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}


More information about the svn-ports-head mailing list