Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 18 Aug 2017 12:44:13 +0000 (UTC)
From:      Raphael Kubo da Costa <rakuco@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r448225 - head/emulators/pearpc
Message-ID:  <201708181244.v7ICiDfM022394@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: rakuco
Date: Fri Aug 18 12:44:13 2017
New Revision: 448225
URL: https://svnweb.freebsd.org/changeset/ports/448225

Log:
  Explicitly pass -std=gnu++03 to the compiler.
  
  This fixes the build with GCC 6, which defaults to -std=gnu++14. The port's
  code does not work with C++11 or later.
  
  PR:		219275

Modified:
  head/emulators/pearpc/Makefile

Modified: head/emulators/pearpc/Makefile
==============================================================================
--- head/emulators/pearpc/Makefile	Fri Aug 18 12:34:07 2017	(r448224)
+++ head/emulators/pearpc/Makefile	Fri Aug 18 12:44:13 2017	(r448225)
@@ -32,6 +32,8 @@ SDL_CONFIGURE_OFF=	--enable-ui=x11
 
 .if ${ARCH} == "amd64" || ${ARCH} == "i386"
 USE_GCC=	yes
+# The port does not build with C++11 or later (bug 219275).
+USE_CXXSTD=	gnu++03
 .else
 CONFIGURE_ARGS+=	--enable-cpu=generic
 .endif



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