svn commit: r519194 - head/games/blackshadeselite

Piotr Kubaj pkubaj at FreeBSD.org
Sat Dec 7 10:13:28 UTC 2019


Author: pkubaj
Date: Sat Dec  7 10:13:27 2019
New Revision: 519194
URL: https://svnweb.freebsd.org/changeset/ports/519194

Log:
  games/blackshadeselite: fix build on GCC architectures
  
  OpenAL now 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/blackshadeselite/Makefile

Modified: head/games/blackshadeselite/Makefile
==============================================================================
--- head/games/blackshadeselite/Makefile	Sat Dec  7 10:12:21 2019	(r519193)
+++ head/games/blackshadeselite/Makefile	Sat Dec  7 10:13:27 2019	(r519194)
@@ -16,7 +16,7 @@ LICENSE_FILE=	${WRKSRC}/COPYING
 
 LIB_DEPENDS=	libvorbis.so:audio/libvorbis
 
-USES=		gl gmake openal:al,alut sdl tar:bzip2
+USES=		compiler:c++11-lang gl gmake openal:al,alut sdl tar:bzip2
 USE_CXXSTD=	c++98
 USE_SDL=	sdl
 USE_GL=		gl glu


More information about the svn-ports-all mailing list