svn commit: r279337 - projects/clang360-import/lib/clang/include/llvm/Config
Dimitry Andric
dim at FreeBSD.org
Thu Feb 26 22:46:02 UTC 2015
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 <execinfo.h> 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"
More information about the svn-src-projects
mailing list