summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CREDITS3
-rw-r--r--ChangeLog8
-rw-r--r--configure.ac6
3 files changed, 13 insertions, 4 deletions
diff --git a/CREDITS b/CREDITS
index d52c7cbcb..d9aa17e68 100644
--- a/CREDITS
+++ b/CREDITS
@@ -45,6 +45,7 @@ Jani Hakala <jahakala@cc.jyu.fi> - Patches
45Jarno Huuskonen <jhuuskon@hytti.uku.fi> - Bugfixes 45Jarno Huuskonen <jhuuskon@hytti.uku.fi> - Bugfixes
46Jim Knoble <jmknoble@jmknoble.cx> - Many patches 46Jim Knoble <jmknoble@jmknoble.cx> - Many patches
47Jonchen (email unknown) - the original author of PAM support of SSH 47Jonchen (email unknown) - the original author of PAM support of SSH
48Joe Rhett (jrhett@isite.net) - Solaris/x86 bugfix
48Juergen Keil <jk@tools.de> - scp bugfixing 49Juergen Keil <jk@tools.de> - scp bugfixing
49KAMAHARA Junzo <kamahara@cc.kshosen.ac.jp> - Configure fixes 50KAMAHARA Junzo <kamahara@cc.kshosen.ac.jp> - Configure fixes
50Kees Cook <cook@cpoint.net> - scp fixes 51Kees Cook <cook@cpoint.net> - scp fixes
@@ -93,5 +94,5 @@ Apologies to anyone I have missed.
93 94
94Damien Miller <djm@mindrot.org> 95Damien 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
diff --git a/ChangeLog b/ChangeLog
index f91cbe950..469b7590a 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
120030719
2 - (dtucker) [configure.ac] Bug #620: Define BROKEN_GETADDRINFO for
3 Solaris/x86. Patch from jrhett at isite.net.
4
120030714 520030714
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
3AC_INIT 3AC_INIT
4AC_CONFIG_SRCDIR([ssh.c]) 4AC_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"