[llvm-commits] CVS: llvm/autoconf/configure.ac
Reid Spencer
reid at x10sys.com
Thu Jun 1 10:44:43 PDT 2006
Changes in directory llvm/autoconf:
configure.ac updated: 1.229 -> 1.230
---
Log message:
Make sure windows.h is #included first.
---
Diffs of the changes: (+2 -1)
configure.ac | 3 ++-
1 files changed, 2 insertions(+), 1 deletion(-)
Index: llvm/autoconf/configure.ac
diff -u llvm/autoconf/configure.ac:1.229 llvm/autoconf/configure.ac:1.230
--- llvm/autoconf/configure.ac:1.229 Thu Jun 1 12:16:20 2006
+++ llvm/autoconf/configure.ac Thu Jun 1 12:44:29 2006
@@ -487,7 +487,8 @@
AC_CHECK_LIB(elf, elf_begin)
AC_CHECK_LIB(m,sin)
if test "$llvm_cv_os_type" == "MingW" ; then
- AC_CHECK_HEADERS([windows.h imagehlp.h psapi.h])
+ AC_CHECK_HEADERS([windows.h])
+ AC_CHECK_HEADERS([imagehlp.h psapi.h])
AC_CHECK_LIB(imagehlp,[SymGetOptions])
AC_CHECK_LIB(psapi,[GetProcessMemoryInfo])
fi
More information about the llvm-commits
mailing list