Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 8 Dec 2019 15:28:05 +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: r519309 - head/games/diaspora
Message-ID:  <201912081528.xB8FS59P006596@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: pkubaj
Date: Sun Dec  8 15:28:05 2019
New Revision: 519309
URL: https://svnweb.freebsd.org/changeset/ports/519309

Log:
  games/diaspora: 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> >::~basic_string()@GLIBCXX_3.4.21'

Modified:
  head/games/diaspora/Makefile

Modified: head/games/diaspora/Makefile
==============================================================================
--- head/games/diaspora/Makefile	Sun Dec  8 15:14:42 2019	(r519308)
+++ head/games/diaspora/Makefile	Sun Dec  8 15:28:05 2019	(r519309)
@@ -33,7 +33,8 @@ LIB_DEPENDS=	libjansson.so:devel/jansson \
 		libvorbisfile.so:audio/libvorbis \
 		libtheora.so:multimedia/libtheora
 
-USES=		autoreconf compiler gl jpeg lua:51 openal pkgconfig sdl tar:lzma
+USES=		autoreconf compiler:c++11-lang gl jpeg lua:51 openal pkgconfig \
+		sdl tar:lzma
 USE_CXXSTD=	gnu++98
 USE_GL=		gl glu
 USE_SDL=	sdl



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201912081528.xB8FS59P006596>