svn commit: r289995 - head/usr.bin/dtc

David Chisnall theraven at FreeBSD.org
Mon Oct 26 10:37:19 UTC 2015


Author: theraven
Date: Mon Oct 26 10:37:17 2015
New Revision: 289995
URL: https://svnweb.freebsd.org/changeset/base/289995

Log:
  Ensure that dtc is built in C++11 mode.
  
  Reported by:	George Abdelmalik

Modified:
  head/usr.bin/dtc/Makefile

Modified: head/usr.bin/dtc/Makefile
==============================================================================
--- head/usr.bin/dtc/Makefile	Mon Oct 26 10:09:08 2015	(r289994)
+++ head/usr.bin/dtc/Makefile	Mon Oct 26 10:37:17 2015	(r289995)
@@ -6,6 +6,8 @@ MAN=	dtc.1
 
 WARNS?=	3
 
+CXXFLAGS+=	-std=c++11
+
 NO_SHARED?=NO
 
 .include <bsd.prog.mk>


More information about the svn-src-head mailing list