Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 11 Feb 2017 15:32:33 +0000 (UTC)
From:      Jan Beich <jbeich@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r433880 - head/games/shaaft
Message-ID:  <201702111532.v1BFWXav032945@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: jbeich
Date: Sat Feb 11 15:32:33 2017
New Revision: 433880
URL: https://svnweb.freebsd.org/changeset/ports/433880

Log:
  games/shaaft: unbreak with gcc6 or later
  
  In file included from Config.cpp:21:0:
  ./Config.hpp:84:63: error: template argument 3 is invalid
        hash_map< string, Value*, hash<string>, equal_to<string> > &kvmap);
                                                                 ^
  ./Config.hpp:84:63: error: template argument 3 is invalid
  ./Config.hpp:84:63: error: template argument 3 is invalid
  ./Config.hpp:84:6: error: 'hash_map' is not a type
        hash_map< string, Value*, hash<string>, equal_to<string> > &kvmap);
        ^~~~~~~~
  ./Config.hpp:84:14: error: expected ',' or '...' before '<' token
        hash_map< string, Value*, hash<string>, equal_to<string> > &kvmap);
                ^
  ./Config.hpp:87:63: error: template argument 3 is invalid
        hash_map< string, Value*, hash<string>, equal_to<string> > &kvmap);
                                                                 ^
  [...]

Modified:
  head/games/shaaft/Makefile   (contents, props changed)

Modified: head/games/shaaft/Makefile
==============================================================================
--- head/games/shaaft/Makefile	Sat Feb 11 15:26:35 2017	(r433879)
+++ head/games/shaaft/Makefile	Sat Feb 11 15:32:33 2017	(r433880)
@@ -21,6 +21,7 @@ USES=		tar:bzip2
 USE_SDL=	mixer image sdl
 USE_GL=		yes
 USE_GCC=	any
+USE_CXXSTD=	gnu++98
 GNU_CONFIGURE=	yes
 CONFIGURE_ARGS=	--disable-optimize
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201702111532.v1BFWXav032945>