Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 9 Dec 2019 14:00:57 +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: r519611 - head/games/avp
Message-ID:  <201912091400.xB9E0vV7032710@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: pkubaj
Date: Mon Dec  9 14:00:56 2019
New Revision: 519611
URL: https://svnweb.freebsd.org/changeset/ports/519611

Log:
  games/avp: fix build on GCC architectures
  
  OpenAL 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/avp/Makefile

Modified: head/games/avp/Makefile
==============================================================================
--- head/games/avp/Makefile	Mon Dec  9 13:56:52 2019	(r519610)
+++ head/games/avp/Makefile	Mon Dec  9 14:00:56 2019	(r519611)
@@ -13,7 +13,7 @@ COMMENT=	Open source re-implementation of Alien versus
 LICENSE=	MIT
 LICENSE_FILE=	${WRKSRC}/LICENSE
 
-USES=		cmake gl openal sdl
+USES=		cmake compiler:c++11-lang gl openal sdl
 USE_GL=		gl
 USE_SDL=	sdl
 



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