summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorReid Spencer <rspencer@reidspencer.com>2004-12-27 06:15:02 +0000
committerReid Spencer <rspencer@reidspencer.com>2004-12-27 06:15:02 +0000
commit7931a7867b602fa159f1939daf37756d9c3b1532 (patch)
tree900d2f0441517541e948c7ab43b462653bca98e6 /include
parent5d01fa5bbe82504e2977d9152c619303e65c839c (diff)
downloadllvm-7931a7867b602fa159f1939daf37756d9c3b1532.tar.gz
llvm-7931a7867b602fa159f1939daf37756d9c3b1532.tar.bz2
llvm-7931a7867b602fa159f1939daf37756d9c3b1532.tar.xz
For PR351:
* Add checks for sterror and strerror_r functions * Add check to determine if /dev/zero is needed for allocating RWX memory. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@19148 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r--include/llvm/Config/config.h.in10
1 files changed, 10 insertions, 0 deletions
diff --git a/include/llvm/Config/config.h.in b/include/llvm/Config/config.h.in
index d3d0aadbcf..372901d164 100644
--- a/include/llvm/Config/config.h.in
+++ b/include/llvm/Config/config.h.in
@@ -270,6 +270,12 @@
/* Define to 1 if you have the `strdup' function. */
#undef HAVE_STRDUP
+/* Define to 1 if you have the `strerror' function. */
+#undef HAVE_STRERROR
+
+/* Define to 1 if you have the `strerror_r' function. */
+#undef HAVE_STRERROR_R
+
/* Define to 1 if you have the <strings.h> header file. */
#undef HAVE_STRINGS_H
@@ -385,6 +391,10 @@
/* Define to the system default library search path. */
#undef LTDL_SYSSEARCHPATH
+/* Define if /dev/zero should be used when mapping RWX memory, or undefine if
+ its not necessary */
+#undef NEED_DEV_ZERO_FOR_MMAP
+
/* Define if dlsym() requires a leading underscore in symbol names. */
#undef NEED_USCORE