Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 19 Jul 2019 08:30:03 +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: r506912 - head/games/csmash
Message-ID:  <201907190830.x6J8U3ws013045@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: pkubaj
Date: Fri Jul 19 08:30:03 2019
New Revision: 506912
URL: https://svnweb.freebsd.org/changeset/ports/506912

Log:
  games/csmash: fix build on GCC architectures
  
  C++11 compiler is necessary:
  LobbyClientView.h:85: error: ISO C++ forbids declaration of 'GtkWidget' with no type
  
  Approved by:	mentors (implicit approval)

Modified:
  head/games/csmash/Makefile

Modified: head/games/csmash/Makefile
==============================================================================
--- head/games/csmash/Makefile	Fri Jul 19 08:28:01 2019	(r506911)
+++ head/games/csmash/Makefile	Fri Jul 19 08:30:03 2019	(r506912)
@@ -13,7 +13,7 @@ COMMENT=	3D tabletennis game
 LICENSE=	GPLv2+
 LICENSE_FILE=	${WRKSRC}/COPYING
 
-USES=		gettext gmake pkgconfig
+USES=		compiler:c++11-lang gettext gmake pkgconfig
 USE_SDL=	image mixer sdl
 USE_GL=		yes
 USE_GNOME=	gtk20



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