svn commit: r523595 - branches/2020Q1/games/opensurge

Piotr Kubaj pkubaj at FreeBSD.org
Sun Jan 19 20:57:43 UTC 2020


Author: pkubaj
Date: Sun Jan 19 20:57:42 2020
New Revision: 523595
URL: https://svnweb.freebsd.org/changeset/ports/523595

Log:
  MFH: r523594
  
  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'
  
  Approved by:	portmgr (fix build blanket)

Modified:
  branches/2020Q1/games/opensurge/Makefile
Directory Properties:
  branches/2020Q1/   (props changed)

Modified: branches/2020Q1/games/opensurge/Makefile
==============================================================================
--- branches/2020Q1/games/opensurge/Makefile	Sun Jan 19 20:56:41 2020	(r523594)
+++ branches/2020Q1/games/opensurge/Makefile	Sun Jan 19 20:57:42 2020	(r523595)
@@ -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-branches mailing list