diff options
author | Darren Tucker <dtucker@zip.com.au> | 2007-06-25 22:15:12 +1000 |
---|---|---|
committer | Darren Tucker <dtucker@zip.com.au> | 2007-06-25 22:15:12 +1000 |
commit | febf0f5668f997c63210b3dbd50ce5443b0f6aea (patch) | |
tree | df7829b7c652ba79cd3d2a357dbf5a4b083de6da /configure.ac | |
parent | dc4a779fbbefd662e1b0b4dd2417329826ff264f (diff) |
- (dtucker) [atomicio.c configure.ac openbsd-compat/Makefile.in
openbsd-compat/bsd-poll.{c,h} openbsd-compat/openbsd-compat.h]
Add an implementation of poll() built on top of select(2). Code from
OpenNTPD with changes suggested by djm. ok djm@
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index 143c164a9..689724133 100644 --- a/configure.ac +++ b/configure.ac | |||
@@ -1,4 +1,4 @@ | |||
1 | # $Id: configure.ac,v 1.381 2007/06/11 04:15:43 djm Exp $ | 1 | # $Id: configure.ac,v 1.382 2007/06/25 12:15:12 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.381 $) | 18 | AC_REVISION($Revision: 1.382 $) |
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) |
@@ -205,6 +205,7 @@ AC_CHECK_HEADERS( \ | |||
205 | netgroup.h \ | 205 | netgroup.h \ |
206 | pam/pam_appl.h \ | 206 | pam/pam_appl.h \ |
207 | paths.h \ | 207 | paths.h \ |
208 | poll.h \ | ||
208 | pty.h \ | 209 | pty.h \ |
209 | readpassphrase.h \ | 210 | readpassphrase.h \ |
210 | rpc/types.h \ | 211 | rpc/types.h \ |
@@ -1267,6 +1268,7 @@ AC_CHECK_FUNCS( \ | |||
1267 | ogetaddrinfo \ | 1268 | ogetaddrinfo \ |
1268 | openlog_r \ | 1269 | openlog_r \ |
1269 | openpty \ | 1270 | openpty \ |
1271 | poll \ | ||
1270 | prctl \ | 1272 | prctl \ |
1271 | pstat \ | 1273 | pstat \ |
1272 | readpassphrase \ | 1274 | readpassphrase \ |