svn commit: r540749 - head/games/shockolate

Mark Linimon linimon at FreeBSD.org
Mon Jun 29 05:25:01 UTC 2020


Author: linimon
Date: Mon Jun 29 05:25:00 2020
New Revision: 540749
URL: https://svnweb.freebsd.org/changeset/ports/540749

Log:
  Add compiler:c++11-lang to USES to fix build on GCC-based systems:
  
    CMake Error in CMakeLists.txt:
    Target "systemshock" requires the language dialect "CXX11" (with compiler
    extensions), but CMake does not know the compile flags to use to enable it.
  
  Approved by:	portmgr (tier-2 blanket)

Modified:
  head/games/shockolate/Makefile

Modified: head/games/shockolate/Makefile
==============================================================================
--- head/games/shockolate/Makefile	Mon Jun 29 05:21:04 2020	(r540748)
+++ head/games/shockolate/Makefile	Mon Jun 29 05:25:00 2020	(r540749)
@@ -16,7 +16,7 @@ LICENSE_FILE=	${WRKSRC}/LICENSE
 LIB_DEPENDS=	libfluidsynth.so:audio/fluidsynth \
 		libasound.so:audio/alsa-lib
 
-USES=		cmake gl sdl pkgconfig
+USES=		cmake compiler:c++11-lang gl pkgconfig sdl
 USE_GL=		gl glu
 USE_SDL=	sdl2 mixer2
 


More information about the svn-ports-all mailing list