Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 6 Dec 2019 09:03:14 +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: r519123 - head/games/chromium-bsu
Message-ID:  <201912060903.xB693ERT075618@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: pkubaj
Date: Fri Dec  6 09:03:13 2019
New Revision: 519123
URL: https://svnweb.freebsd.org/changeset/ports/519123

Log:
  games/chromium-bsu: fix build on GCC architectures
  
  C++11 compiler is necessary:
  /usr/local/lib/libopenal.so: undefined reference to `std::chrono::_V2::steady_clock::now()@GLIBCXX_3.4.19'
  
  Approved by:	mentors (implicit approval)

Modified:
  head/games/chromium-bsu/Makefile

Modified: head/games/chromium-bsu/Makefile
==============================================================================
--- head/games/chromium-bsu/Makefile	Fri Dec  6 09:01:16 2019	(r519122)
+++ head/games/chromium-bsu/Makefile	Fri Dec  6 09:03:13 2019	(r519123)
@@ -16,7 +16,8 @@ LICENSE_FILE=	${WRKSRC}/COPYING
 LIB_DEPENDS=	libGLC.so:graphics/quesoglc
 
 GNU_CONFIGURE=	yes
-USES=		gettext-tools gl gmake gnome localbase pkgconfig sdl
+USES=		compiler:c++11-lang gettext-tools gl gmake gnome localbase \
+		pkgconfig sdl
 USE_SDL=	sdl2 image2
 USE_GL=		gl glu
 CONFIGURE_ARGS=	--disable-sdl \



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