svn commit: r519147 - head/games/lugaru
Piotr Kubaj
pkubaj at FreeBSD.org
Fri Dec 6 14:42:59 UTC 2019
Author: pkubaj
Date: Fri Dec 6 14:42:58 2019
New Revision: 519147
URL: https://svnweb.freebsd.org/changeset/ports/519147
Log:
games/lugaru: fix build on GCC architectures
New OpenAL requires C++11:
/usr/local/lib/libopenal.so: undefined reference to `std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >::_M_create(unsigned long&, unsigned long)@GLIBCXX_3.4.21'
Modified:
head/games/lugaru/Makefile
Modified: head/games/lugaru/Makefile
==============================================================================
--- head/games/lugaru/Makefile Fri Dec 6 14:25:25 2019 (r519146)
+++ head/games/lugaru/Makefile Fri Dec 6 14:42:58 2019 (r519147)
@@ -18,7 +18,7 @@ LIB_DEPENDS= libpng.so:graphics/png \
libvorbis.so:audio/libvorbis \
libogg.so:audio/libogg
-USES= cmake gl jpeg openal:soft pkgconfig sdl tar:bzip2 xorg
+USES= cmake compiler:c++11-lang gl jpeg openal:soft pkgconfig sdl tar:bzip2 xorg
USE_GL= gl glu
USE_SDL= sdl
USE_XORG= sm
More information about the svn-ports-all
mailing list