diff options
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | configure.ac | 3 |
2 files changed, 5 insertions, 2 deletions
@@ -5,6 +5,8 @@ | |||
5 | - (bal) s/config.h/includes.h/ in openbsd-compat/ for *.c. Otherwise wise | 5 | - (bal) s/config.h/includes.h/ in openbsd-compat/ for *.c. Otherwise wise |
6 | have issues of our fixes not propogating right (ie bcopy instead of | 6 | have issues of our fixes not propogating right (ie bcopy instead of |
7 | memmove). OK tim | 7 | memmove). OK tim |
8 | - (bal) FreeBSD needs <sys/types.h> to detect if mmap() is supported. | ||
9 | Bug #303 | ||
8 | 10 | ||
9 | 200206027 | 11 | 200206027 |
10 | - OpenBSD CVS Sync | 12 | - OpenBSD CVS Sync |
@@ -1195,4 +1197,4 @@ | |||
1195 | - (stevesk) entropy.c: typo in debug message | 1197 | - (stevesk) entropy.c: typo in debug message |
1196 | - (djm) ssh-keygen -i needs seeded RNG; report from markus@ | 1198 | - (djm) ssh-keygen -i needs seeded RNG; report from markus@ |
1197 | 1199 | ||
1198 | $Id: ChangeLog,v 1.2310 2002/06/27 18:23:20 mouring Exp $ | 1200 | $Id: ChangeLog,v 1.2311 2002/06/28 00:37:33 mouring Exp $ |
diff --git a/configure.ac b/configure.ac index ad5d5cde9..7ef77e5b1 100644 --- a/configure.ac +++ b/configure.ac | |||
@@ -1,4 +1,4 @@ | |||
1 | # $Id: configure.ac,v 1.72 2002/06/25 22:35:16 tim Exp $ | 1 | # $Id: configure.ac,v 1.73 2002/06/28 00:37:33 mouring Exp $ |
2 | 2 | ||
3 | AC_INIT | 3 | AC_INIT |
4 | AC_CONFIG_SRCDIR([ssh.c]) | 4 | AC_CONFIG_SRCDIR([ssh.c]) |
@@ -582,6 +582,7 @@ AC_MSG_CHECKING([for mmap anon shared]) | |||
582 | AC_TRY_RUN( | 582 | AC_TRY_RUN( |
583 | [ | 583 | [ |
584 | #include <stdio.h> | 584 | #include <stdio.h> |
585 | #include <sys/types.h> | ||
585 | #include <sys/mman.h> | 586 | #include <sys/mman.h> |
586 | #if !defined(MAP_ANON) && defined(MAP_ANONYMOUS) | 587 | #if !defined(MAP_ANON) && defined(MAP_ANONYMOUS) |
587 | #define MAP_ANON MAP_ANONYMOUS | 588 | #define MAP_ANON MAP_ANONYMOUS |