]> git.ipfire.org Git - thirdparty/openssh-portable.git/commitdiff
- (bal) FreeBSD needs <sys/types.h> to detect if mmap() is supported.
authorBen Lindstrom <mouring@eviladmin.org>
Fri, 28 Jun 2002 00:37:33 +0000 (00:37 +0000)
committerBen Lindstrom <mouring@eviladmin.org>
Fri, 28 Jun 2002 00:37:33 +0000 (00:37 +0000)
   Bug #303

ChangeLog
configure.ac

index 75ed2720afee3a31dab68ac5c206b1ba5adc5e8e..0140549c146fff8f88a3bc4378150a84caa2fbd3 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -5,6 +5,8 @@
  - (bal) s/config.h/includes.h/ in openbsd-compat/ for *.c.  Otherwise wise
    have issues of our fixes not propogating right (ie bcopy instead of
    memmove).  OK tim
+ - (bal) FreeBSD needs <sys/types.h> to detect if mmap() is supported.
+   Bug #303
 
 200206027
  - OpenBSD CVS Sync
  - (stevesk) entropy.c: typo in debug message
  - (djm) ssh-keygen -i needs seeded RNG; report from markus@
 
-$Id: ChangeLog,v 1.2310 2002/06/27 18:23:20 mouring Exp $
+$Id: ChangeLog,v 1.2311 2002/06/28 00:37:33 mouring Exp $
index ad5d5cde971a7c7ed0ac4e1682658cfb61d805bf..7ef77e5b1942543c87045a21da0d1f893c5057e0 100644 (file)
@@ -1,4 +1,4 @@
-# $Id: configure.ac,v 1.72 2002/06/25 22:35:16 tim Exp $
+# $Id: configure.ac,v 1.73 2002/06/28 00:37:33 mouring Exp $
 
 AC_INIT
 AC_CONFIG_SRCDIR([ssh.c])
@@ -582,6 +582,7 @@ AC_MSG_CHECKING([for mmap anon shared])
 AC_TRY_RUN(
        [
 #include <stdio.h>
+#include <sys/types.h>
 #include <sys/mman.h>
 #if !defined(MAP_ANON) && defined(MAP_ANONYMOUS)
 #define MAP_ANON MAP_ANONYMOUS