Displaying 1 result from an estimated 1 matches for "have_mmap_dev_zero".
2002 Jun 26
0
IRIX 6.5 patch for Compression with UsePrivilegeSeparation
....h.in Wed Jun 26 10:08:19 2002
+++ ../openssh-3.4p1/./config.h.in Wed Jun 26 17:46:01 2002
@@ -358,6 +358,9 @@
/* Define if you have the `mmap' function that supports MAP_ANON|SHARED */
#undef HAVE_MMAP_ANON_SHARED
+/* Define if mmap of /dev/zero gives an anonymous memory region. */
+#undef HAVE_MMAP_DEV_ZERO
+
/* Define if sendmsg()/recvmsg() has problems passing file descriptors */
#undef BROKEN_FD_PASSING
--- ./servconf.c Mon Jun 24 23:22:04 2002
+++ ../openssh-3.4p1/./servconf.c Wed Jun 26 17:54:55 2002
@@ -257,7 +257,7 @@
if (use_privsep == -1)
use_privsep = 1;
-#if !defined(HAVE_MMAP_AN...