From owner-svn-src-projects@freebsd.org Tue Apr 18 20:31:03 2017 Return-Path: Delivered-To: svn-src-projects@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B4CF7D44E39 for ; Tue, 18 Apr 2017 20:31:03 +0000 (UTC) (envelope-from dim@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 mx1.freebsd.org (Postfix) with ESMTPS id 8658FE46; Tue, 18 Apr 2017 20:31:03 +0000 (UTC) (envelope-from dim@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v3IKV2x3087000; Tue, 18 Apr 2017 20:31:02 GMT (envelope-from dim@FreeBSD.org) Received: (from dim@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v3IKV2aT086999; Tue, 18 Apr 2017 20:31:02 GMT (envelope-from dim@FreeBSD.org) Message-Id: <201704182031.v3IKV2aT086999@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dim set sender to dim@FreeBSD.org using -f From: Dimitry Andric Date: Tue, 18 Apr 2017 20:31:02 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r317103 - in projects/clang500-import: contrib/llvm/tools/lldb/include/lldb/Host lib/clang/include/lldb lib/clang/include/lldb/Host 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.23 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: Tue, 18 Apr 2017 20:31:03 -0000 Author: dim Date: Tue Apr 18 20:31:02 2017 New Revision: 317103 URL: https://svnweb.freebsd.org/changeset/base/317103 Log: For lldb, delete the custom Xcode-only Host/Config.h, and provide a pre-generated version in lib/clang/include/lldb/Host instead, similar to what we do for clang, llvm and lld. Added: projects/clang500-import/lib/clang/include/lldb/ projects/clang500-import/lib/clang/include/lldb/Host/ projects/clang500-import/lib/clang/include/lldb/Host/Config.h (contents, props changed) Deleted: projects/clang500-import/contrib/llvm/tools/lldb/include/lldb/Host/Config.h Added: projects/clang500-import/lib/clang/include/lldb/Host/Config.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ projects/clang500-import/lib/clang/include/lldb/Host/Config.h Tue Apr 18 20:31:02 2017 (r317103) @@ -0,0 +1,20 @@ +// $FreeBSD$ +//===-- Config.h -----------------------------------------------*- C++ -*-===// +// +// The LLVM Compiler Infrastructure +// +// This file is distributed under the University of Illinois Open Source +// License. See LICENSE.TXT for details. +// +//===----------------------------------------------------------------------===// + +#ifndef LLDB_HOST_CONFIG_H +#define LLDB_HOST_CONFIG_H + +#define LLDB_CONFIG_TERMIOS_SUPPORTED + +/* #undef LLDB_DISABLE_POSIX */ + +#define HAVE_SYS_EVENT_H 0 + +#endif // #ifndef LLDB_HOST_CONFIG_H