- (bal) disable privsep if no MAP_ANON.  We can re-enable it
   after the release when we can do more testing.
diff --git a/ChangeLog b/ChangeLog
index 327e914..a6d20ed 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -4,6 +4,8 @@
    to -h on testing for /bin being symbolic link
  - (bal) Mistaken in Cygwin scripts for ssh starting.  Patch by
    Corinna Vinschen <vinschen@redhat.com> 
+ - (bal) disable privsep if no MAP_ANON.  We can re-enable it
+   after the release when we can do more testing.
 
 20020411
  - (stevesk) [auth-sia.c] cleanup
@@ -8229,4 +8231,4 @@
  - Wrote replacements for strlcpy and mkdtemp
  - Released 1.0pre1
 
-$Id: ChangeLog,v 1.2049 2002/04/12 17:44:13 mouring Exp $
+$Id: ChangeLog,v 1.2050 2002/04/12 18:51:22 mouring Exp $
diff --git a/monitor_mm.c b/monitor_mm.c
index 3231c87..993925e 100644
--- a/monitor_mm.c
+++ b/monitor_mm.c
@@ -84,7 +84,7 @@
 	 */
 	mm->mmalloc = mmalloc;
 
-#ifdef HAVE_MMAP
+#if  defined(HAVE_MMAP) && defined(MAP_ANON)
 	address = mmap(NULL, size, PROT_WRITE|PROT_READ, MAP_ANON|MAP_SHARED,
 	    -1, 0);
 	if (address == MAP_FAILED)