diff options
author | Darren Tucker <dtucker@zip.com.au> | 2014-01-17 18:10:58 +1100 |
---|---|---|
committer | Darren Tucker <dtucker@zip.com.au> | 2014-01-17 18:10:58 +1100 |
commit | a5cf1e220def07290260e4125e74f41ac75cf88d (patch) | |
tree | 990b73a34c1f425de38cccf83e2aa386ec7a6af1 /configure.ac | |
parent | 1357d71d7b6d269969520aaa3e84d312ec971d5b (diff) |
- (dtucker) [configure.ac openbsd-compat/bsd-statvfs.c
openbsd-compat/bsd-statvfs.h] Implement enough of statvfs on top of statfs
to be useful (and for the regression tests to pass) on platforms that
have statfs and fstatfs. ok djm@
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index 2ac3afa38..c97e12f34 100644 --- a/configure.ac +++ b/configure.ac | |||
@@ -1,4 +1,4 @@ | |||
1 | # $Id: configure.ac,v 1.551 2014/01/17 06:32:30 dtucker Exp $ | 1 | # $Id: configure.ac,v 1.552 2014/01/17 07:10:58 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.551 $) | 18 | AC_REVISION($Revision: 1.552 $) |
19 | AC_CONFIG_SRCDIR([ssh.c]) | 19 | AC_CONFIG_SRCDIR([ssh.c]) |
20 | AC_LANG([C]) | 20 | AC_LANG([C]) |
21 | 21 | ||
@@ -1585,6 +1585,7 @@ AC_CHECK_FUNCS([ \ | |||
1585 | fchmod \ | 1585 | fchmod \ |
1586 | fchown \ | 1586 | fchown \ |
1587 | freeaddrinfo \ | 1587 | freeaddrinfo \ |
1588 | fstatfs \ | ||
1588 | fstatvfs \ | 1589 | fstatvfs \ |
1589 | futimes \ | 1590 | futimes \ |
1590 | getaddrinfo \ | 1591 | getaddrinfo \ |