svn commit: r519123 - head/games/chromium-bsu
Piotr Kubaj
pkubaj at FreeBSD.org
Fri Dec 6 09:03:14 UTC 2019
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 \
More information about the svn-ports-all
mailing list