svn commit: r488438 - head/games/exult

Mark Linimon linimon at FreeBSD.org
Wed Dec 26 20:51:58 UTC 2018


Author: linimon
Date: Wed Dec 26 20:51:56 2018
New Revision: 488438
URL: https://svnweb.freebsd.org/changeset/ports/488438

Log:
  -Wno-c++11-narrowing is not supported by GCC.  Set USE_CXXSTD=c++98
  to build with both GCC and Clang.
  
  PR:		234365
  Submitted by:	Piotr Kubaj

Modified:
  head/games/exult/Makefile

Modified: head/games/exult/Makefile
==============================================================================
--- head/games/exult/Makefile	Wed Dec 26 20:47:25 2018	(r488437)
+++ head/games/exult/Makefile	Wed Dec 26 20:51:56 2018	(r488438)
@@ -22,13 +22,13 @@ LIB_DEPENDS=	libvorbis.so:audio/libvorbis \
 USE_GITHUB=	yes
 GH_TAGNAME=	b15afba
 
-USES=		autoreconf compiler:c++11-lib gmake libtool localbase pkgconfig
+USES=		autoreconf compiler:c++11-lib gmake gnome libtool localbase \
+		pkgconfig
+USE_CXXSTD=	c++98
 USE_XORG=	xext
 GNU_CONFIGURE=	yes
 CONFIGURE_ARGS=	--disable-alsa \
 		--with-icondir=${PREFIX}/share/pixmaps
-CFLAGS+=	-Wno-c++11-narrowing
-
 SUB_FILES=	pkg-message
 
 OPTIONS_DEFINE=		DOCS FLUIDSYNTH GIMP STUDIO THUMBNAILER


More information about the svn-ports-head mailing list