svn commit: r447407 - head/devel/aegis

Raphael Kubo da Costa rakuco at FreeBSD.org
Sat Aug 5 16:56:12 UTC 2017


Author: rakuco
Date: Sat Aug  5 16:56:11 2017
New Revision: 447407
URL: https://svnweb.freebsd.org/changeset/ports/447407

Log:
  Explicitly pass -std=gnu++03 to build.
  
  GCC 6 switched to -std=gnu++14 by default, which breaks the port. Switch back
  to the previous GCC default to unbreak things.
  
  PR:		219284
  Approved by:	portmgr (blanket approval)

Modified:
  head/devel/aegis/Makefile

Modified: head/devel/aegis/Makefile
==============================================================================
--- head/devel/aegis/Makefile	Sat Aug  5 16:55:33 2017	(r447406)
+++ head/devel/aegis/Makefile	Sat Aug  5 16:56:11 2017	(r447407)
@@ -26,6 +26,10 @@ CONFIGURE_ENV=	WISH="${WISH}"
 LDFLAGS+=	-L${LOCALBASE}/lib
 MAKE_JOBS_UNSAFE=	yes
 
+# GCC 6 switched to -std=gnu++14 by default, which breaks the port (bug
+# 219284). Explicitly use the previous default to keep things going.
+USE_CXXSTD=	gnu++03
+
 OPTIONS_DEFINE=	DOCS NLS
 OPTIONS_SUB=	yes
 


More information about the svn-ports-all mailing list