From owner-svn-src-projects@FreeBSD.ORG Wed Nov 26 17:24:13 2014 Return-Path: Delivered-To: svn-src-projects@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 28E71D03; Wed, 26 Nov 2014 17:24:13 +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 15EE97C6; Wed, 26 Nov 2014 17:24:13 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id sAQHOCMu063486; Wed, 26 Nov 2014 17:24:12 GMT (envelope-from emaste@FreeBSD.org) Received: (from emaste@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id sAQHOCiM063485; Wed, 26 Nov 2014 17:24:12 GMT (envelope-from emaste@FreeBSD.org) Message-Id: <201411261724.sAQHOCiM063485@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: emaste set sender to emaste@FreeBSD.org using -f From: Ed Maste Date: Wed, 26 Nov 2014 17:24:12 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r275129 - projects/clang350-import/contrib/llvm/tools/lldb/source/Host/posix 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.18-1 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: Wed, 26 Nov 2014 17:24:13 -0000 Author: emaste Date: Wed Nov 26 17:24:12 2014 New Revision: 275129 URL: https://svnweb.freebsd.org/changeset/base/275129 Log: There is no Python in the FreeBSD base system Replaced: projects/clang350-import/contrib/llvm/tools/lldb/source/Host/posix/ - copied from r275075, vendor/lldb/dist/source/Host/posix/ Modified: projects/clang350-import/contrib/llvm/tools/lldb/source/Host/posix/HostInfoPosix.cpp Modified: projects/clang350-import/contrib/llvm/tools/lldb/source/Host/posix/HostInfoPosix.cpp ============================================================================== --- vendor/lldb/dist/source/Host/posix/HostInfoPosix.cpp Tue Nov 25 21:08:31 2014 (r275075) +++ projects/clang350-import/contrib/llvm/tools/lldb/source/Host/posix/HostInfoPosix.cpp Wed Nov 26 17:24:12 2014 (r275129) @@ -173,6 +173,8 @@ HostInfoPosix::ComputeHeaderDirectory(Fi bool HostInfoPosix::ComputePythonDirectory(FileSpec &file_spec) { + return false; // No Python in FreeBSD base system +#if 0 FileSpec lldb_file_spec; if (!GetLLDBPath(lldb::ePathTypeLLDBShlibDir, lldb_file_spec)) return false; @@ -190,4 +192,5 @@ HostInfoPosix::ComputePythonDirectory(Fi file_spec.GetDirectory().SetCString(raw_path); return true; +#endif }