diff options
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 17 |
1 files changed, 15 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index 3005e21b5..4f3ec2a20 100644 --- a/configure.ac +++ b/configure.ac | |||
@@ -1,4 +1,4 @@ | |||
1 | # $Id: configure.ac,v 1.400 2008/06/07 23:25:28 dtucker Exp $ | 1 | # $Id: configure.ac,v 1.401 2008/06/08 17:32:29 dtucker Exp $ |
2 | # | 2 | # |
3 | # Copyright (c) 1999-2004 Damien Miller | 3 | # Copyright (c) 1999-2004 Damien Miller |
4 | # | 4 | # |
@@ -15,7 +15,7 @@ | |||
15 | # OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. | 15 | # OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
16 | 16 | ||
17 | AC_INIT(OpenSSH, Portable, openssh-unix-dev@mindrot.org) | 17 | AC_INIT(OpenSSH, Portable, openssh-unix-dev@mindrot.org) |
18 | AC_REVISION($Revision: 1.400 $) | 18 | AC_REVISION($Revision: 1.401 $) |
19 | AC_CONFIG_SRCDIR([ssh.c]) | 19 | AC_CONFIG_SRCDIR([ssh.c]) |
20 | 20 | ||
21 | AC_CONFIG_HEADER(config.h) | 21 | AC_CONFIG_HEADER(config.h) |
@@ -1305,6 +1305,7 @@ AC_CHECK_FUNCS( \ | |||
1305 | fchmod \ | 1305 | fchmod \ |
1306 | fchown \ | 1306 | fchown \ |
1307 | freeaddrinfo \ | 1307 | freeaddrinfo \ |
1308 | fstatvfs \ | ||
1308 | futimes \ | 1309 | futimes \ |
1309 | getaddrinfo \ | 1310 | getaddrinfo \ |
1310 | getcwd \ | 1311 | getcwd \ |
@@ -2651,6 +2652,18 @@ fi | |||
2651 | TYPE_SOCKLEN_T | 2652 | TYPE_SOCKLEN_T |
2652 | 2653 | ||
2653 | AC_CHECK_TYPES(sig_atomic_t,,,[#include <signal.h>]) | 2654 | AC_CHECK_TYPES(sig_atomic_t,,,[#include <signal.h>]) |
2655 | AC_CHECK_TYPES([fsblkcnt_t, fsfilcnt_t],,,[ | ||
2656 | #include <sys/types.h> | ||
2657 | #ifdef HAVE_SYS_BITYPES_H | ||
2658 | #include <sys/bitypes.h> | ||
2659 | #endif | ||
2660 | #ifdef HAVE_SYS_STATFS_H | ||
2661 | #include <sys/statfs.h> | ||
2662 | #endif | ||
2663 | #ifdef HAVE_SYS_STATVFS_H | ||
2664 | #include <sys/statvfs.h> | ||
2665 | #endif | ||
2666 | ]) | ||
2654 | 2667 | ||
2655 | AC_CHECK_TYPES(in_addr_t,,, | 2668 | AC_CHECK_TYPES(in_addr_t,,, |
2656 | [#include <sys/types.h> | 2669 | [#include <sys/types.h> |