From owner-svn-src-all@FreeBSD.ORG Fri Jul 11 07:31:56 2014 Return-Path: Delivered-To: svn-src-all@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 ESMTPS id 4D2A8119; Fri, 11 Jul 2014 07:31:56 +0000 (UTC) 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)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 3A5AE2926; Fri, 11 Jul 2014 07:31:56 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s6B7Vuok009779; Fri, 11 Jul 2014 07:31:56 GMT (envelope-from emaste@svn.freebsd.org) Received: (from emaste@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s6B7VuQK009777; Fri, 11 Jul 2014 07:31:56 GMT (envelope-from emaste@svn.freebsd.org) Message-Id: <201407110731.s6B7VuQK009777@svn.freebsd.org> From: Ed Maste Date: Fri, 11 Jul 2014 07:31:56 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r268527 - head/contrib/llvm/tools/lldb/tools/driver X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 11 Jul 2014 07:31:56 -0000 Author: emaste Date: Fri Jul 11 07:31:55 2014 New Revision: 268527 URL: http://svnweb.freebsd.org/changeset/base/268527 Log: Remove unused readline header Readline is no longer installed after r268461. A readline compatibility header is provided by libedit, but readline definitions do not seem to be used by LLDB anyhow. Submitted by: markj, Jan Beich Modified: head/contrib/llvm/tools/lldb/tools/driver/Platform.h Modified: head/contrib/llvm/tools/lldb/tools/driver/Platform.h ============================================================================== --- head/contrib/llvm/tools/lldb/tools/driver/Platform.h Fri Jul 11 06:52:48 2014 (r268526) +++ head/contrib/llvm/tools/lldb/tools/driver/Platform.h Fri Jul 11 07:31:55 2014 (r268527) @@ -101,12 +101,6 @@ #include #include - #if defined(__FreeBSD__) - #include - #else - #include - #endif - #endif #endif // lldb_Platform_h_