diff options
Diffstat (limited to 'lib/clang/include/llvm/Config/config.h')
-rw-r--r-- | lib/clang/include/llvm/Config/config.h | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/lib/clang/include/llvm/Config/config.h b/lib/clang/include/llvm/Config/config.h index c6d500a..3fc38be 100644 --- a/lib/clang/include/llvm/Config/config.h +++ b/lib/clang/include/llvm/Config/config.h @@ -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 |