svn commit: r519600 - head/games/atr3d

Piotr Kubaj pkubaj at FreeBSD.org
Mon Dec 9 11:15:30 UTC 2019


Author: pkubaj
Date: Mon Dec  9 11:15:30 2019
New Revision: 519600
URL: https://svnweb.freebsd.org/changeset/ports/519600

Log:
  games/atr3d: fix build on GCC architectures
  
  OpenAL needs C++11 compiler:
  /usr/local/lib/libopenal.so: undefined reference to `vtable for std::__cxx11::basic_istringstream<char, std::char_traits<char>, std::allocator<char> >@GLIBCXX_3.4.21'

Modified:
  head/games/atr3d/Makefile

Modified: head/games/atr3d/Makefile
==============================================================================
--- head/games/atr3d/Makefile	Mon Dec  9 09:40:35 2019	(r519599)
+++ head/games/atr3d/Makefile	Mon Dec  9 11:15:30 2019	(r519600)
@@ -29,7 +29,7 @@ LLD_UNSAFE=	yes
 OPTIONS_DEFINE=	OPENAL
 OPTIONS_DEFAULT=OPENAL
 
-OPENAL_USES=	openal:alut
+OPENAL_USES=	compiler:c++11-lang openal:alut
 OPENAL_CONFIGURE_ENABLE=	sound
 
 pre-patch:


More information about the svn-ports-all mailing list