[llvm-commits] CVS: llvm/configure
John Criswell
criswell at cs.uiuc.edu
Wed May 26 19:59:01 PDT 2004
Changes in directory llvm:
configure updated: 1.88 -> 1.89
---
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: (+4 -6)
Index: llvm/configure
diff -u llvm/configure:1.88 llvm/configure:1.89
--- llvm/configure:1.88 Fri Apr 16 12:13:44 2004
+++ llvm/configure Wed May 26 19:57:44 2004
@@ -21368,9 +21368,8 @@
if test "$ac_cv_func_mmap_fixed_mapped" = "no"
then
- { { echo "$as_me:$LINENO: error: mmap() required but not found" >&5
-echo "$as_me: error: mmap() required but not found" >&2;}
- { (exit 1); exit 1; }; }
+ { echo "$as_me:$LINENO: WARNING: mmap() required but not found" >&5
+echo "$as_me: WARNING: mmap() required but not found" >&2;}
fi
echo "$as_me:$LINENO: checking for mmap of files" >&5
echo $ECHO_N "checking for mmap of files... $ECHO_C" >&6
@@ -21460,9 +21459,8 @@
if test "$ac_cv_func_mmap_file" = "no"
then
- { { echo "$as_me:$LINENO: error: mmap() of files required but not found" >&5
-echo "$as_me: error: mmap() of files required but not found" >&2;}
- { (exit 1); exit 1; }; }
+ { echo "$as_me:$LINENO: WARNING: mmap() of files required but not found" >&5
+echo "$as_me: WARNING: mmap() of files required but not found" >&2;}
fi
echo "$as_me:$LINENO: checking for MAP_ANONYMOUS vs. MAP_ANON" >&5
echo $ECHO_N "checking for MAP_ANONYMOUS vs. MAP_ANON... $ECHO_C" >&6
More information about the llvm-commits
mailing list