From owner-svn-src-projects@FreeBSD.ORG Fri Oct 18 17:35:53 2013 Return-Path: Delivered-To: svn-src-projects@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 4A4FA718; Fri, 18 Oct 2013 17:35:53 +0000 (UTC) (envelope-from asomers@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 1D68D231A; Fri, 18 Oct 2013 17:35:53 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r9IHZq2q099863; Fri, 18 Oct 2013 17:35:52 GMT (envelope-from asomers@svn.freebsd.org) Received: (from asomers@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r9IHZqqp099850; Fri, 18 Oct 2013 17:35:52 GMT (envelope-from asomers@svn.freebsd.org) Message-Id: <201310181735.r9IHZqqp099850@svn.freebsd.org> From: Alan Somers Date: Fri, 18 Oct 2013 17:35:52 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r256749 - in projects/zfsd/head: cddl/sbin/zfsd lib/libdevctl X-SVN-Group: projects MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-projects@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "SVN commit messages for the src " projects" tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 18 Oct 2013 17:35:53 -0000 Author: asomers Date: Fri Oct 18 17:35:51 2013 New Revision: 256749 URL: http://svnweb.freebsd.org/changeset/base/256749 Log: cddl/sbin/zfsd/callout.cc lib/libdevctl/consumer.cc lib/libdevctl/event.cc lib/libdevctl/event_factory.cc Include headers that are implicitly included by gcc and libstdc++ but must be explicitly included when using clang and libc++. Submitted by: alans Approved by: ken (mentor) Sponsored by: Spectra Logic Corporation Modified: projects/zfsd/head/cddl/sbin/zfsd/callout.cc projects/zfsd/head/lib/libdevctl/consumer.cc projects/zfsd/head/lib/libdevctl/event.cc projects/zfsd/head/lib/libdevctl/event_factory.cc Modified: projects/zfsd/head/cddl/sbin/zfsd/callout.cc ============================================================================== --- projects/zfsd/head/cddl/sbin/zfsd/callout.cc Fri Oct 18 17:21:47 2013 (r256748) +++ projects/zfsd/head/cddl/sbin/zfsd/callout.cc Fri Oct 18 17:35:51 2013 (r256749) @@ -42,6 +42,7 @@ #include #include +#include #include #include #include Modified: projects/zfsd/head/lib/libdevctl/consumer.cc ============================================================================== --- projects/zfsd/head/lib/libdevctl/consumer.cc Fri Oct 18 17:21:47 2013 (r256748) +++ projects/zfsd/head/lib/libdevctl/consumer.cc Fri Oct 18 17:35:51 2013 (r256749) @@ -37,11 +37,13 @@ #include #include #include +#include #include #include #include #include +#include #include #include Modified: projects/zfsd/head/lib/libdevctl/event.cc ============================================================================== --- projects/zfsd/head/lib/libdevctl/event.cc Fri Oct 18 17:21:47 2013 (r256748) +++ projects/zfsd/head/lib/libdevctl/event.cc Fri Oct 18 17:35:51 2013 (r256749) @@ -44,6 +44,7 @@ #include #include #include +#include #include #include Modified: projects/zfsd/head/lib/libdevctl/event_factory.cc ============================================================================== --- projects/zfsd/head/lib/libdevctl/event_factory.cc Fri Oct 18 17:21:47 2013 (r256748) +++ projects/zfsd/head/lib/libdevctl/event_factory.cc Fri Oct 18 17:35:51 2013 (r256749) @@ -34,6 +34,7 @@ * \file event_factory.cc */ #include +#include #include #include