diff options
-rw-r--r-- | CREDITS | 3 | ||||
-rw-r--r-- | ChangeLog | 8 | ||||
-rw-r--r-- | configure.ac | 6 |
3 files changed, 13 insertions, 4 deletions
@@ -45,6 +45,7 @@ Jani Hakala <jahakala@cc.jyu.fi> - Patches | |||
45 | Jarno Huuskonen <jhuuskon@hytti.uku.fi> - Bugfixes | 45 | Jarno Huuskonen <jhuuskon@hytti.uku.fi> - Bugfixes |
46 | Jim Knoble <jmknoble@jmknoble.cx> - Many patches | 46 | Jim Knoble <jmknoble@jmknoble.cx> - Many patches |
47 | Jonchen (email unknown) - the original author of PAM support of SSH | 47 | Jonchen (email unknown) - the original author of PAM support of SSH |
48 | Joe Rhett (jrhett@isite.net) - Solaris/x86 bugfix | ||
48 | Juergen Keil <jk@tools.de> - scp bugfixing | 49 | Juergen Keil <jk@tools.de> - scp bugfixing |
49 | KAMAHARA Junzo <kamahara@cc.kshosen.ac.jp> - Configure fixes | 50 | KAMAHARA Junzo <kamahara@cc.kshosen.ac.jp> - Configure fixes |
50 | Kees Cook <cook@cpoint.net> - scp fixes | 51 | Kees Cook <cook@cpoint.net> - scp fixes |
@@ -93,5 +94,5 @@ Apologies to anyone I have missed. | |||
93 | 94 | ||
94 | Damien Miller <djm@mindrot.org> | 95 | Damien Miller <djm@mindrot.org> |
95 | 96 | ||
96 | $Id: CREDITS,v 1.70 2003/07/14 06:41:55 dtucker Exp $ | 97 | $Id: CREDITS,v 1.71 2003/07/19 09:49:45 dtucker Exp $ |
97 | 98 | ||
@@ -1,3 +1,7 @@ | |||
1 | 20030719 | ||
2 | - (dtucker) [configure.ac] Bug #620: Define BROKEN_GETADDRINFO for | ||
3 | Solaris/x86. Patch from jrhett at isite.net. | ||
4 | |||
1 | 20030714 | 5 | 20030714 |
2 | - (dtucker) [acconfig.h configure.ac port-aix.c] Older AIXes don't declare | 6 | - (dtucker) [acconfig.h configure.ac port-aix.c] Older AIXes don't declare |
3 | loginfailed at all, so assume 3-arg loginfailed if not declared. | 7 | loginfailed at all, so assume 3-arg loginfailed if not declared. |
@@ -5,7 +9,7 @@ | |||
5 | undef'ing it. | 9 | undef'ing it. |
6 | - (dtucker) Bug #543: [configure.ac port-aix.c port-aix.h] | 10 | - (dtucker) Bug #543: [configure.ac port-aix.c port-aix.h] |
7 | Call setauthdb() before loginfailed(), which may load password registry- | 11 | Call setauthdb() before loginfailed(), which may load password registry- |
8 | specific functions. Based on patch by cawlfiel@us.ibm.com. | 12 | specific functions. Based on patch by cawlfiel at us.ibm.com. |
9 | - (dtucker) [port-aix.h] Fix prototypes. | 13 | - (dtucker) [port-aix.h] Fix prototypes. |
10 | - (dtucker) OpenBSD CVS Sync | 14 | - (dtucker) OpenBSD CVS Sync |
11 | - avsm@cvs.openbsd.org 2003/07/09 13:58:19 | 15 | - avsm@cvs.openbsd.org 2003/07/09 13:58:19 |
@@ -693,4 +697,4 @@ | |||
693 | - Fix sshd BindAddress and -b options for systems using fake-getaddrinfo. | 697 | - Fix sshd BindAddress and -b options for systems using fake-getaddrinfo. |
694 | Report from murple@murple.net, diagnosis from dtucker@zip.com.au | 698 | Report from murple@murple.net, diagnosis from dtucker@zip.com.au |
695 | 699 | ||
696 | $Id: ChangeLog,v 1.2856 2003/07/14 07:32:29 dtucker Exp $ | 700 | $Id: ChangeLog,v 1.2857 2003/07/19 09:49:45 dtucker Exp $ |
diff --git a/configure.ac b/configure.ac index 516a24437..4501b4ae4 100644 --- a/configure.ac +++ b/configure.ac | |||
@@ -1,4 +1,4 @@ | |||
1 | # $Id: configure.ac,v 1.134 2003/07/14 06:41:55 dtucker Exp $ | 1 | # $Id: configure.ac,v 1.135 2003/07/19 09:49:45 dtucker Exp $ |
2 | 2 | ||
3 | AC_INIT | 3 | AC_INIT |
4 | AC_CONFIG_SRCDIR([ssh.c]) | 4 | AC_CONFIG_SRCDIR([ssh.c]) |
@@ -296,6 +296,10 @@ mips-sony-bsd|mips-sony-newsos4) | |||
296 | else | 296 | else |
297 | AC_MSG_RESULT(no) | 297 | AC_MSG_RESULT(no) |
298 | fi | 298 | fi |
299 | sol2platform=`echo "$host"| sed -e 's/-solaris.*$//'` | ||
300 | if test "$sol2platform" -eq "i386-pc"; then | ||
301 | AC_DEFINE(BROKEN_ADDRINFO) | ||
302 | fi | ||
299 | ;; | 303 | ;; |
300 | *-*-sunos4*) | 304 | *-*-sunos4*) |
301 | CPPFLAGS="$CPPFLAGS -DSUNOS4" | 305 | CPPFLAGS="$CPPFLAGS -DSUNOS4" |