svn commit: r519611 - head/games/avp

Piotr Kubaj pkubaj at FreeBSD.org
Mon Dec 9 14:00:57 UTC 2019


Author: pkubaj
Date: Mon Dec  9 14:00:56 2019
New Revision: 519611
URL: https://svnweb.freebsd.org/changeset/ports/519611

Log:
  games/avp: fix build on GCC architectures
  
  OpenAL needs C++11 compiler:
  /usr/local/lib/libopenal.so: undefined reference to `std::runtime_error::runtime_error(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&)@GLIBCXX_3.4.21'

Modified:
  head/games/avp/Makefile

Modified: head/games/avp/Makefile
==============================================================================
--- head/games/avp/Makefile	Mon Dec  9 13:56:52 2019	(r519610)
+++ head/games/avp/Makefile	Mon Dec  9 14:00:56 2019	(r519611)
@@ -13,7 +13,7 @@ COMMENT=	Open source re-implementation of Alien versus
 LICENSE=	MIT
 LICENSE_FILE=	${WRKSRC}/LICENSE
 
-USES=		cmake gl openal sdl
+USES=		cmake compiler:c++11-lang gl openal sdl
 USE_GL=		gl
 USE_SDL=	sdl
 


More information about the svn-ports-head mailing list