Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 8 Dec 2019 17:09:37 +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: r519437 - head/games/excido
Message-ID:  <201912081709.xB8H9bts080406@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: pkubaj
Date: Sun Dec  8 17:09:37 2019
New Revision: 519437
URL: https://svnweb.freebsd.org/changeset/ports/519437

Log:
  games/excido: 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> >::rfind(char, unsigned long) const@GLIBCXX_3.4.21'

Modified:
  head/games/excido/Makefile

Modified: head/games/excido/Makefile
==============================================================================
--- head/games/excido/Makefile	Sun Dec  8 17:05:05 2019	(r519436)
+++ head/games/excido/Makefile	Sun Dec  8 17:09:37 2019	(r519437)
@@ -18,7 +18,7 @@ LIB_DEPENDS=	libphysfs.so:devel/physfs
 
 WRKSRC=		${WRKDIR}/${PORTNAME}-${PORTVERSION}
 
-USES=		gl gmake openal:al,alut sdl tar:bzip2
+USES=		compiler:c++11-lang gl gmake openal:al,alut sdl tar:bzip2
 USE_GL=		gl glu
 USE_SDL=	image sdl ttf
 



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