Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 11 Nov 2019 18:20:06 +0000 (UTC)
From:      Piotr Kubaj <pkubaj@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r517277 - head/games/devilutionX
Message-ID:  <201911111820.xABIK6sI024092@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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



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