svn commit: r519437 - head/games/excido

Piotr Kubaj pkubaj at FreeBSD.org
Sun Dec 8 17:09:37 UTC 2019


Author: pkubaj
Date: Sun Dec  8 17:09:37 2019
New Revision: 519437
URL: https://svnweb.freebsd.org/changeset/ports/519437

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

Modified:
  head/games/excido/Makefile

Modified: head/games/excido/Makefile
==============================================================================
--- head/games/excido/Makefile	Sun Dec  8 17:05:05 2019	(r519436)
+++ head/games/excido/Makefile	Sun Dec  8 17:09:37 2019	(r519437)
@@ -18,7 +18,7 @@ LIB_DEPENDS=	libphysfs.so:devel/physfs
 
 WRKSRC=		${WRKDIR}/${PORTNAME}-${PORTVERSION}
 
-USES=		gl gmake openal:al,alut sdl tar:bzip2
+USES=		compiler:c++11-lang gl gmake openal:al,alut sdl tar:bzip2
 USE_GL=		gl glu
 USE_SDL=	image sdl ttf
 


More information about the svn-ports-all mailing list