Date: Sat, 7 Dec 2019 10:13:27 +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: r519194 - head/games/blackshadeselite Message-ID: <201912071013.xB7ADRMw067373@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201912071013.xB7ADRMw067373>