[llvm-commits] CVS: llvm/include/llvm/Config/config.h.in

Reid Spencer reid at x10sys.com
Sun Dec 26 22:15:13 PST 2004



Changes in directory llvm/include/llvm/Config:

config.h.in updated: 1.43 -> 1.44
---
Log message:

For PR351: http://llvm.cs.uiuc.edu/PR351 :
* Add checks for sterror and strerror_r functions
* Add check to determine if /dev/zero is needed for allocating RWX memory.


---
Diffs of the changes:  (+10 -0)

Index: llvm/include/llvm/Config/config.h.in
diff -u llvm/include/llvm/Config/config.h.in:1.43 llvm/include/llvm/Config/config.h.in:1.44
--- llvm/include/llvm/Config/config.h.in:1.43	Sat Dec 25 01:31:29 2004
+++ llvm/include/llvm/Config/config.h.in	Mon Dec 27 00:15:02 2004
@@ -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
 






More information about the llvm-commits mailing list