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

John Criswell criswell at cs.uiuc.edu
Fri Sep 24 14:19:21 PDT 2004



Changes in directory llvm/include/llvm/Config:

config.h.in updated: 1.29 -> 1.30
---
Log message:

Updated the last two header files so that they are configured with
AC_CONFIG_HEADERS.  This should prevent LLVM from needlessly re-compiling
on a re-configure.



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

Index: llvm/include/llvm/Config/config.h.in
diff -u llvm/include/llvm/Config/config.h.in:1.29 llvm/include/llvm/Config/config.h.in:1.30
--- llvm/include/llvm/Config/config.h.in:1.29	Wed Sep 22 10:32:08 2004
+++ llvm/include/llvm/Config/config.h.in	Fri Sep 24 16:19:06 2004
@@ -18,6 +18,9 @@
 /* Define to 1 if you have the `backtrace' function. */
 #undef HAVE_BACKTRACE
 
+/* Does not have bi-directional iterator */
+#undef HAVE_BI_ITERATOR
+
 /* Define to 1 if you have the <dlfcn.h> header file. */
 #undef HAVE_DLFCN_H
 
@@ -34,6 +37,9 @@
    */
 #undef HAVE_FINITE_IN_IEEEFP_H
 
+/* Does not have forward iterator */
+#undef HAVE_FWD_ITERATOR
+
 /* Define to 1 if you have the `getcwd' function. */
 #undef HAVE_GETCWD
 
@@ -46,6 +52,18 @@
 /* Define to 1 if you have the `gettimeofday' function. */
 #undef HAVE_GETTIMEOFDAY
 
+/* Does not have <hash_map> */
+#undef HAVE_GLOBAL_HASH_MAP
+
+/* Does not have hash_set in global namespace */
+#undef HAVE_GLOBAL_HASH_SET
+
+/* Does not have ext/hash_map */
+#undef HAVE_GNU_EXT_HASH_MAP
+
+/* Does not have hash_set in gnu namespace */
+#undef HAVE_GNU_EXT_HASH_SET
+
 /* Define to 1 if the system has the type `int64_t'. */
 #undef HAVE_INT64_T
 
@@ -108,12 +126,21 @@
 /* Define to have the %a format string */
 #undef HAVE_PRINTF_A
 
+/* Have pthread_mutex_lock */
+#undef HAVE_PTHREAD_MUTEX_LOCK
+
 /* Define to 1 if you have the <stdint.h> header file. */
 #undef HAVE_STDINT_H
 
 /* Define to 1 if you have the <stdlib.h> header file. */
 #undef HAVE_STDLIB_H
 
+/* Does not have ext/hash_map> */
+#undef HAVE_STD_EXT_HASH_MAP
+
+/* Does not have hash_set in std namespace */
+#undef HAVE_STD_EXT_HASH_SET
+
 /* Define to 1 if your compiler defines std::isinf in the <cmath> header file.
    */
 #undef HAVE_STD_ISINF_IN_CMATH
@@ -122,6 +149,9 @@
    */
 #undef HAVE_STD_ISNAN_IN_CMATH
 
+/* Does not have std namespace iterator */
+#undef HAVE_STD_ITERATOR
+
 /* Define to 1 if you have the `strdup' function. */
 #undef HAVE_STRDUP
 






More information about the llvm-commits mailing list