svn commit: r523594 - head/games/opensurge

Piotr Kubaj pkubaj at FreeBSD.org
Sun Jan 19 20:56:42 UTC 2020


Author: pkubaj
Date: Sun Jan 19 20:56:41 2020
New Revision: 523594
URL: https://svnweb.freebsd.org/changeset/ports/523594

Log:
  games/opensurge: fix build on GCC architectures
  
  C++11 compiler is needed for OpenAL:
  /usr/local/lib/libopenal.so: undefined reference to `std::overflow_error::overflow_error(char const*)@GLIBCXX_3.4.21'
  
  MFH:		2020Q1 (fix build blanket)

Modified:
  head/games/opensurge/Makefile

Modified: head/games/opensurge/Makefile
==============================================================================
--- head/games/opensurge/Makefile	Sun Jan 19 20:46:59 2020	(r523593)
+++ head/games/opensurge/Makefile	Sun Jan 19 20:56:41 2020	(r523594)
@@ -28,7 +28,7 @@ LIB_DEPENDS=	libalfont.so:x11-fonts/alfont \
 
 WRKSRC=		${WRKDIR}/${PORTNAME}-src-build${SVN_REV}
 
-USES=		cmake dos2unix gnome localbase openal:soft
+USES=		cmake compiler:c++11-lang dos2unix gnome localbase openal:soft
 DOS2UNIX_GLOB=	*.bg *.brk *.grp  *.inc *.lev *.lng  *.obj *.qst *.spr *.txt
 
 PORTDOCS=	readme.html


More information about the svn-ports-all mailing list