[llvm-commits] CVS: llvm/autoconf/configure.ac
John Criswell
criswell at cs.uiuc.edu
Wed May 26 20:00:01 PDT 2004
Changes in directory llvm/autoconf:
configure.ac updated: 1.86 -> 1.87
---
Log message:
Only give warnings if the user doesn't have mmap(). This is pretty much
a hack that allows users to fight through a build if they don't have mmap().
When I get into the office, I'll make something better.
---
Diffs of the changes: (+2 -2)
Index: llvm/autoconf/configure.ac
diff -u llvm/autoconf/configure.ac:1.86 llvm/autoconf/configure.ac:1.87
--- llvm/autoconf/configure.ac:1.86 Fri Apr 16 12:13:33 2004
+++ llvm/autoconf/configure.ac Wed May 26 19:57:50 2004
@@ -273,12 +273,12 @@
AC_FUNC_MMAP
if test "$ac_cv_func_mmap_fixed_mapped" = "no"
then
- AC_MSG_ERROR([mmap() required but not found])
+ AC_MSG_WARN([mmap() required but not found])
fi
AC_FUNC_MMAP_FILE
if test "$ac_cv_func_mmap_file" = "no"
then
- AC_MSG_ERROR([mmap() of files required but not found])
+ AC_MSG_WARN([mmap() of files required but not found])
fi
AC_HEADER_MMAP_ANONYMOUS
AC_TYPE_SIGNAL
More information about the llvm-commits
mailing list