svn commit: r517277 - head/games/devilutionX

Piotr Kubaj pkubaj at FreeBSD.org
Mon Nov 11 18:20:07 UTC 2019


Author: pkubaj
Date: Mon Nov 11 18:20:06 2019
New Revision: 517277
URL: https://svnweb.freebsd.org/changeset/ports/517277

Log:
  games/devilutionX: fix build on GCC architectures
  
  Needs C++11 compiler:
    Target "devilution" requires the language dialect "CXX11" , but CMake does
    not know the compile flags to use to enable it.
  
  Approved by:	mentors (implicit approval)

Modified:
  head/games/devilutionX/Makefile

Modified: head/games/devilutionX/Makefile
==============================================================================
--- head/games/devilutionX/Makefile	Mon Nov 11 18:09:39 2019	(r517276)
+++ head/games/devilutionX/Makefile	Mon Nov 11 18:20:06 2019	(r517277)
@@ -12,7 +12,7 @@ LICENSE=	UNLICENSE
 
 LIB_DEPENDS=	libsodium.so:security/libsodium
 
-USES=		cmake dos2unix sdl
+USES=		cmake compiler:c++11-lang dos2unix sdl
 USE_SDL=	mixer2 sdl2 ttf2
 
 PLIST_FILES=	bin/devilutionx


More information about the svn-ports-all mailing list