Date: Fri, 6 Dec 2019 14:42:58 +0000 (UTC) From: Piotr Kubaj <pkubaj@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r519147 - head/games/lugaru Message-ID: <201912061442.xB6EgwEa076568@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201912061442.xB6EgwEa076568>