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

Reid Spencer reid at x10sys.com
Tue Jul 12 08:24:32 PDT 2005



Changes in directory llvm/include/llvm/Config:

config.h.in updated: 1.49 -> 1.50
---
Log message:

For PR540: http://llvm.cs.uiuc.edu/PR540 :
* Add check for pthread.h
* Make sure -lpthread gets added to LIBS if its available


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

 config.h.in |    6 ++++++
 1 files changed, 6 insertions(+)


Index: llvm/include/llvm/Config/config.h.in
diff -u llvm/include/llvm/Config/config.h.in:1.49 llvm/include/llvm/Config/config.h.in:1.50
--- llvm/include/llvm/Config/config.h.in:1.49	Sun May 15 17:15:11 2005
+++ llvm/include/llvm/Config/config.h.in	Tue Jul 12 10:24:20 2005
@@ -151,6 +151,9 @@
 /* Define to 1 if you have the `elf' library (-lelf). */
 #undef HAVE_LIBELF
 
+/* Define to 1 if you have the `pthread' library (-lpthread). */
+#undef HAVE_LIBPTHREAD
+
 /* Define to 1 if you have the <limits.h> header file. */
 #undef HAVE_LIMITS_H
 
@@ -216,6 +219,9 @@
 /* Define to have the %a format string */
 #undef HAVE_PRINTF_A
 
+/* Define to 1 if you have the <pthread.h> header file. */
+#undef HAVE_PTHREAD_H
+
 /* Have pthread_mutex_lock */
 #undef HAVE_PTHREAD_MUTEX_LOCK
 






More information about the llvm-commits mailing list