svn commit: r522700 - head/games/scid

Piotr Kubaj pkubaj at FreeBSD.org
Sat Jan 11 18:19:32 UTC 2020


Author: pkubaj
Date: Sat Jan 11 18:19:31 2020
New Revision: 522700
URL: https://svnweb.freebsd.org/changeset/ports/522700

Log:
  games/scid: fix build on GCC architectures
  
  C++11 compiler is necessary:
  src/game.h:299: error: ISO C++ forbids declaration of 'ply' with no type

Modified:
  head/games/scid/Makefile

Modified: head/games/scid/Makefile
==============================================================================
--- head/games/scid/Makefile	Sat Jan 11 17:40:57 2020	(r522699)
+++ head/games/scid/Makefile	Sat Jan 11 18:19:31 2020	(r522700)
@@ -13,7 +13,7 @@ COMMENT=	Free chess database application
 LICENSE=	GPLv2
 LICENSE_FILE=	${WRKSRC}/COPYING
 
-USES=		gmake python shebangfix tk zip
+USES=		compiler:c++11-lang gmake python shebangfix tk zip
 SHEBANG_FILES=	scripts/eco2pgn.py scripts/pgnfix.py scripts/twic2scid.py \
 		tcl/lang/checklangs.tcl tcl/lang/propagatelang.tcl \
 		tcl/lang/removetoken.tcl


More information about the svn-ports-all mailing list