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 c6d56bf4a..19446b3bd 100644 --- a/configure.ac +++ b/configure.ac | |||
@@ -1,4 +1,4 @@ | |||
1 | # $Id: configure.ac,v 1.345 2006/07/11 08:00:06 dtucker Exp $ | 1 | # $Id: configure.ac,v 1.346 2006/07/12 04:14:31 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.345 $) | 18 | AC_REVISION($Revision: 1.346 $) |
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) |
@@ -1285,6 +1285,19 @@ AC_CHECK_DECL(tcsendbreak, | |||
1285 | 1285 | ||
1286 | AC_CHECK_DECLS(h_errno, , ,[#include <netdb.h>]) | 1286 | AC_CHECK_DECLS(h_errno, , ,[#include <netdb.h>]) |
1287 | 1287 | ||
1288 | AC_CHECK_DECLS(SHUT_RD, , ,[#include <sys/socket.h>]) | ||
1289 | |||
1290 | AC_CHECK_DECLS(O_NONBLOCK, , , | ||
1291 | [ | ||
1292 | #include <sys/types.h> | ||
1293 | #ifdef HAVE_SYS_STAT_H | ||
1294 | # include <sys/stat.h> | ||
1295 | #endif | ||
1296 | #ifdef HAVE_FCNTL_H | ||
1297 | # include <fcntl.h> | ||
1298 | #endif | ||
1299 | ]) | ||
1300 | |||
1288 | AC_CHECK_FUNCS(setresuid, [ | 1301 | AC_CHECK_FUNCS(setresuid, [ |
1289 | dnl Some platorms have setresuid that isn't implemented, test for this | 1302 | dnl Some platorms have setresuid that isn't implemented, test for this |
1290 | AC_MSG_CHECKING(if setresuid seems to work) | 1303 | AC_MSG_CHECKING(if setresuid seems to work) |