svn commit: r478634 - head/games/gillo

Tobias Kortkamp tobik at FreeBSD.org
Fri Aug 31 23:51:03 UTC 2018


Author: tobik
Date: Fri Aug 31 23:51:02 2018
New Revision: 478634
URL: https://svnweb.freebsd.org/changeset/ports/478634

Log:
  games/gillo: Fix build with Clang 6
  
  src/entity.h:63:21: error: in-class initializer for static data member of type 'const float' requires 'constexpr' specifier [-Wstatic-float-init]
          static const float defaultCharge = 10;
                             ^
  
  http://beefy11.nyi.freebsd.org/data/head-i386-default/p478276_s338342/logs/errors/gillo-1.0.b1_10.log

Modified:
  head/games/gillo/Makefile

Modified: head/games/gillo/Makefile
==============================================================================
--- head/games/gillo/Makefile	Fri Aug 31 23:48:26 2018	(r478633)
+++ head/games/gillo/Makefile	Fri Aug 31 23:51:02 2018	(r478634)
@@ -21,6 +21,7 @@ LIB_DEPENDS=	libode.so:devel/ode
 WRKSRC=		${WRKDIR}/${PORTNAME}
 
 USES=		tar:bzip2
+USE_CXXSTD=	c++98
 USE_GL=		glu
 USE_SDL=	yes
 


More information about the svn-ports-head mailing list