[llvm-commits] CVS: llvm/include/llvm/Support/ThreadSupport.h.in
John Criswell
criswell at cs.uiuc.edu
Fri Sep 24 14:19:21 PDT 2004
Changes in directory llvm/include/llvm/Support:
ThreadSupport.h.in updated: 1.2 -> 1.3
---
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: (+3 -1)
Index: llvm/include/llvm/Support/ThreadSupport.h.in
diff -u llvm/include/llvm/Support/ThreadSupport.h.in:1.2 llvm/include/llvm/Support/ThreadSupport.h.in:1.3
--- llvm/include/llvm/Support/ThreadSupport.h.in:1.2 Wed Sep 1 17:55:35 2004
+++ llvm/include/llvm/Support/ThreadSupport.h.in Fri Sep 24 16:19:06 2004
@@ -17,7 +17,9 @@
#ifndef SUPPORT_THREADSUPPORT_H
#define SUPPORT_THREADSUPPORT_H
-#if @HAVE_PTHREAD_MUTEX_LOCK@
+#undef HAVE_PTHREAD_MUTEX_LOCK
+
+#ifdef HAVE_PTHREAD_MUTEX_LOCK
#include "llvm/Support/ThreadSupport-PThreads.h"
#else
#include "llvm/Support/ThreadSupport-NoSupport.h"
More information about the llvm-commits
mailing list