diff options
-rw-r--r-- | ChangeLog | 2 | ||||
-rw-r--r-- | INSTALL | 11 | ||||
-rw-r--r-- | README | 3 | ||||
-rw-r--r-- | configure.in | 2 | ||||
-rw-r--r-- | sshd.c | 12 |
5 files changed, 26 insertions, 4 deletions
@@ -17,6 +17,8 @@ | |||
17 | - [version.h] | 17 | - [version.h] |
18 | OpenSSH-1.2.1 | 18 | OpenSSH-1.2.1 |
19 | - Clean up broken includes in pty.c | 19 | - Clean up broken includes in pty.c |
20 | - Some older systems don't have poll.h, they use sys/poll.h instead | ||
21 | - Doc updates | ||
20 | 22 | ||
21 | 19991211 | 23 | 19991211 |
22 | - Fix compilation on systems with AFS. Reported by | 24 | - Fix compilation on systems with AFS. Reported by |
@@ -113,6 +113,17 @@ To generate a host key, issue the following command: (replacing | |||
113 | 113 | ||
114 | /usr/bin/ssh-keygen -b 1024 -f /etc/ssh/ssh_host_key -N '' | 114 | /usr/bin/ssh-keygen -b 1024 -f /etc/ssh/ssh_host_key -N '' |
115 | 115 | ||
116 | Replacing /etc/ssh with the correct path to the configuration directory. | ||
117 | (${prefix}/etc or whatever you specified with --sysconfdir during | ||
118 | configuration) | ||
119 | |||
116 | For more information on configuration, please refer to the manual pages | 120 | For more information on configuration, please refer to the manual pages |
117 | for sshd, ssh and ssh-agent. | 121 | for sshd, ssh and ssh-agent. |
118 | 122 | ||
123 | 4. Problems? | ||
124 | ------------ | ||
125 | |||
126 | If you experience problems compiling, installing or running OpenSSH. | ||
127 | Please refer to the "reporting bugs" section of the webpage at | ||
128 | http://violet.ibs.com.au/openssh/ | ||
129 | |||
@@ -37,6 +37,9 @@ openssh-unix-dev-request@mindrot.org. This mailing list is intended | |||
37 | for developers who wish to improve on this port or extend it to other | 37 | for developers who wish to improve on this port or extend it to other |
38 | Unices. | 38 | Unices. |
39 | 39 | ||
40 | Please send bug reports to the mailing list, or to myself | ||
41 | (djm@ibs.com.au). | ||
42 | |||
40 | Please refer to the INSTALL document for information on how to install | 43 | Please refer to the INSTALL document for information on how to install |
41 | OpenSSH on your system. | 44 | OpenSSH on your system. |
42 | 45 | ||
diff --git a/configure.in b/configure.in index c4894c071..aa23baece 100644 --- a/configure.in +++ b/configure.in | |||
@@ -56,7 +56,7 @@ AC_CHECK_LIB(dl, dlopen, , ) | |||
56 | AC_CHECK_LIB(pam, pam_authenticate, , ) | 56 | AC_CHECK_LIB(pam, pam_authenticate, , ) |
57 | 57 | ||
58 | dnl Checks for header files. | 58 | dnl Checks for header files. |
59 | AC_CHECK_HEADERS(endian.h lastlog.h login.h maillock.h netgroup.h paths.h pty.h shadow.h util.h utmp.h utmpx.h sys/select.h sys/stropts.h sys/time.h) | 59 | AC_CHECK_HEADERS(endian.h lastlog.h login.h maillock.h netgroup.h paths.h poll.h pty.h shadow.h util.h utmp.h utmpx.h sys/poll.h sys/select.h sys/stropts.h sys/time.h) |
60 | 60 | ||
61 | dnl Checks for library functions. | 61 | dnl Checks for library functions. |
62 | AC_CHECK_FUNCS(arc4random mkdtemp openpty _getpty setenv setlogin setproctitle snprintf strlcat strlcpy vsnprintf) | 62 | AC_CHECK_FUNCS(arc4random mkdtemp openpty _getpty setenv setlogin setproctitle snprintf strlcat strlcpy vsnprintf) |
@@ -11,9 +11,15 @@ | |||
11 | */ | 11 | */ |
12 | 12 | ||
13 | #include "includes.h" | 13 | #include "includes.h" |
14 | RCSID("$Id: sshd.c,v 1.38 1999/12/13 23:47:16 damien Exp $"); | 14 | RCSID("$Id: sshd.c,v 1.39 1999/12/14 04:43:03 damien Exp $"); |
15 | 15 | ||
16 | #include <poll.h> | 16 | #ifdef HAVE_POLL_H |
17 | # include <poll.h> | ||
18 | #else /* HAVE_POLL_H */ | ||
19 | # ifdef HAVE_SYS_POLL_H | ||
20 | # include <sys/poll.h> | ||
21 | # endif /* HAVE_SYS_POLL_H */ | ||
22 | #endif /* HAVE_POLL_H */ | ||
17 | 23 | ||
18 | #include "xmalloc.h" | 24 | #include "xmalloc.h" |
19 | #include "rsa.h" | 25 | #include "rsa.h" |