From owner-svn-src-projects@FreeBSD.ORG Thu Feb 26 22:46:02 2015 Return-Path: Delivered-To: svn-src-projects@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 3F50D48E; Thu, 26 Feb 2015 22:46:02 +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 29D44372; Thu, 26 Feb 2015 22:46:02 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t1QMk2TQ065949; Thu, 26 Feb 2015 22:46:02 GMT (envelope-from dim@FreeBSD.org) Received: (from dim@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t1QMk17c065946; Thu, 26 Feb 2015 22:46:01 GMT (envelope-from dim@FreeBSD.org) Message-Id: <201502262246.t1QMk17c065946@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: dim set sender to dim@FreeBSD.org using -f From: Dimitry Andric Date: Thu, 26 Feb 2015 22:46:01 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r279337 - projects/clang360-import/lib/clang/include/llvm/Config 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: Thu, 26 Feb 2015 22:46:02 -0000 Author: dim Date: Thu Feb 26 22:46:01 2015 New Revision: 279337 URL: https://svnweb.freebsd.org/changeset/base/279337 Log: Minor updates to llvm's pregenerated config headers. Modified: projects/clang360-import/lib/clang/include/llvm/Config/config.h projects/clang360-import/lib/clang/include/llvm/Config/llvm-config.h Modified: projects/clang360-import/lib/clang/include/llvm/Config/config.h ============================================================================== --- projects/clang360-import/lib/clang/include/llvm/Config/config.h Thu Feb 26 22:22:06 2015 (r279336) +++ projects/clang360-import/lib/clang/include/llvm/Config/config.h Thu Feb 26 22:46:01 2015 (r279337) @@ -89,7 +89,9 @@ #define HAVE_ERRNO_H 1 /* Define to 1 if you have the header file. */ -/* #undef HAVE_EXECINFO_H */ +#if __FreeBSD_version >= 1000052 +#define HAVE_EXECINFO_H 1 +#endif /* Define to 1 if you have the `exp' function. */ #define HAVE_EXP 1 @@ -122,7 +124,9 @@ #define HAVE_FMODF 1 /* Define to 1 if you have the `futimens' function. */ -/* #undef HAVE_FUTIMENS */ +#if __FreeBSD_version >= 1100056 +#define HAVE_FUTIMENS 1 +#endif /* Define to 1 if you have the `futimes' function. */ #define HAVE_FUTIMES 1 Modified: projects/clang360-import/lib/clang/include/llvm/Config/llvm-config.h ============================================================================== --- projects/clang360-import/lib/clang/include/llvm/Config/llvm-config.h Thu Feb 26 22:22:06 2015 (r279336) +++ projects/clang360-import/lib/clang/include/llvm/Config/llvm-config.h Thu Feb 26 22:46:01 2015 (r279337) @@ -94,6 +94,9 @@ /* Minor version of the LLVM API */ #define LLVM_VERSION_MINOR 6 +/* Patch version of the LLVM API */ +#define LLVM_VERSION_PATCH 0 + /* LLVM version string */ #define LLVM_VERSION_STRING "3.6.0"