[llvm-commits] CVS: llvm/include/llvm/Config/config.h.in
Reid Spencer
reid at x10sys.com
Thu Jun 1 09:56:12 PDT 2006
Changes in directory llvm/include/llvm/Config:
config.h.in updated: 1.62 -> 1.63
---
Log message:
Provide support for detecting if the Win32 imaghlp and psapi libraries
are available. These libraries are used in lib/System and should be
included on the link line or if not available generate an error when
building lib/System.
---
Diffs of the changes: (+12 -0)
config.h.in | 12 ++++++++++++
1 files changed, 12 insertions(+)
Index: llvm/include/llvm/Config/config.h.in
diff -u llvm/include/llvm/Config/config.h.in:1.62 llvm/include/llvm/Config/config.h.in:1.63
--- llvm/include/llvm/Config/config.h.in:1.62 Mon Jan 23 02:15:53 2006
+++ llvm/include/llvm/Config/config.h.in Thu Jun 1 11:55:59 2006
@@ -136,6 +136,9 @@
/* Define if the gv program is available */
#undef HAVE_GV
+/* Define to 1 if you have the <imagehlp.h> header file. */
+#undef HAVE_IMAGEHLP_H
+
/* Define to 1 if you have the `index' function. */
#undef HAVE_INDEX
@@ -166,9 +169,15 @@
/* Define to 1 if you have the `elf' library (-lelf). */
#undef HAVE_LIBELF
+/* Define to 1 if you have the `imagehlp' library (-limagehlp). */
+#undef HAVE_LIBIMAGEHLP
+
/* Define to 1 if you have the `m' library (-lm). */
#undef HAVE_LIBM
+/* Define to 1 if you have the `psapi' library (-lpsapi). */
+#undef HAVE_LIBPSAPI
+
/* Define to 1 if you have the `pthread' library (-lpthread). */
#undef HAVE_LIBPTHREAD
@@ -246,6 +255,9 @@
/* Define to have the %a format string */
#undef HAVE_PRINTF_A
+/* Define to 1 if you have the <psapi.h> header file. */
+#undef HAVE_PSAPI_H
+
/* Define to 1 if you have the <pthread.h> header file. */
#undef HAVE_PTHREAD_H
More information about the llvm-commits
mailing list