From owner-svn-src-head@freebsd.org Thu Aug 23 02:26:42 2018 Return-Path: Delivered-To: svn-src-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 08A9B109DC96; Thu, 23 Aug 2018 02:26:42 +0000 (UTC) (envelope-from kevans@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id B0A0D79EC9; Thu, 23 Aug 2018 02:26:41 +0000 (UTC) (envelope-from kevans@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 91A051BC43; Thu, 23 Aug 2018 02:26:41 +0000 (UTC) (envelope-from kevans@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w7N2Qf2c079953; Thu, 23 Aug 2018 02:26:41 GMT (envelope-from kevans@FreeBSD.org) Received: (from kevans@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w7N2QeWt079950; Thu, 23 Aug 2018 02:26:40 GMT (envelope-from kevans@FreeBSD.org) Message-Id: <201808230226.w7N2QeWt079950@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: kevans set sender to kevans@FreeBSD.org using -f From: Kyle Evans Date: Thu, 23 Aug 2018 02:26:40 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r338232 - head/usr.bin/dtc X-SVN-Group: head X-SVN-Commit-Author: kevans X-SVN-Commit-Paths: head/usr.bin/dtc X-SVN-Commit-Revision: 338232 X-SVN-Commit-Repository: base MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.27 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 23 Aug 2018 02:26:42 -0000 Author: kevans Date: Thu Aug 23 02:26:40 2018 New Revision: 338232 URL: https://svnweb.freebsd.org/changeset/base/338232 Log: dtc(1): Update to 0892ec7; HACKING and implicit header fixes Fixes courtesy of arichardson and jmg: - HACKING was pointing to the wrong place - Added headers were being relied on implicitly, but libstdc++ did not comply with the unspoken wishes of dtc. MFC after: 1 week Modified: head/usr.bin/dtc/HACKING head/usr.bin/dtc/string.cc head/usr.bin/dtc/util.hh Modified: head/usr.bin/dtc/HACKING ============================================================================== --- head/usr.bin/dtc/HACKING Thu Aug 23 02:22:07 2018 (r338231) +++ head/usr.bin/dtc/HACKING Thu Aug 23 02:26:40 2018 (r338232) @@ -8,9 +8,9 @@ This file contains some notes for people wishing to ha Upstreaming ----------- -This code is developed in the FreeBSD svn repository: +This code is developed in the git repository: -https://svn.freebsd.org/base/head/usr.bin/dtc +https://github.com/davidchisnall/dtc If you got the source from anywhere else and wish to make changes, please ensure that you are working against the latest version, or you may end up Modified: head/usr.bin/dtc/string.cc ============================================================================== --- head/usr.bin/dtc/string.cc Thu Aug 23 02:22:07 2018 (r338231) +++ head/usr.bin/dtc/string.cc Thu Aug 23 02:26:40 2018 (r338232) @@ -36,6 +36,7 @@ #include #include #include +#include #include #include Modified: head/usr.bin/dtc/util.hh ============================================================================== --- head/usr.bin/dtc/util.hh Thu Aug 23 02:22:07 2018 (r338231) +++ head/usr.bin/dtc/util.hh Thu Aug 23 02:26:40 2018 (r338232) @@ -35,6 +35,9 @@ #ifndef _UTIL_HH_ #define _UTIL_HH_ +#include +#include +#include #include // If we aren't using C++11, then just ignore static asserts.