]> andersk Git - openssh.git/commitdiff
- (dtucker) [configure.ac] Bug #620: Define BROKEN_GETADDRINFO for
authordtucker <dtucker>
Sat, 19 Jul 2003 09:49:45 +0000 (09:49 +0000)
committerdtucker <dtucker>
Sat, 19 Jul 2003 09:49:45 +0000 (09:49 +0000)
   Solaris/x86.  Patch from jrhett at isite.net.

CREDITS
ChangeLog
configure.ac

diff --git a/CREDITS b/CREDITS
index 936d25ed314af1c7d176b817a46d566239f4354a..d212a02a4208dbb07b4ba194f4c51840cd240fd0 100644 (file)
--- a/CREDITS
+++ b/CREDITS
@@ -45,6 +45,7 @@ Jani Hakala <jahakala@cc.jyu.fi> - Patches
 Jarno Huuskonen <jhuuskon@hytti.uku.fi> - Bugfixes
 Jim Knoble <jmknoble@jmknoble.cx> - Many patches
 Jonchen (email unknown) - the original author of PAM support of SSH
+Joe Rhett (jrhett@isite.net) - Solaris/x86 bugfix
 Juergen Keil <jk@tools.de> - scp bugfixing
 KAMAHARA Junzo <kamahara@cc.kshosen.ac.jp> - Configure fixes
 Kees Cook <cook@cpoint.net> - scp fixes
index 7c74aea7a29f90d1129e3413080fb88898e0065e..3bf1781da54aeec34cb73146341e863cb371f392 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+20030719
+ - (dtucker) [configure.ac] Bug #620: Define BROKEN_GETADDRINFO for
+   Solaris/x86.  Patch from jrhett at isite.net.
+
 20030714
  - (dtucker) [acconfig.h configure.ac port-aix.c] Older AIXes don't declare
    loginfailed at all, so assume 3-arg loginfailed if not declared.
@@ -5,7 +9,7 @@
    undef'ing it.
  - (dtucker) Bug #543: [configure.ac port-aix.c port-aix.h]
    Call setauthdb() before loginfailed(), which may load password registry-
-   specific functions.  Based on patch by cawlfiel@us.ibm.com.
+   specific functions.  Based on patch by cawlfiel at us.ibm.com.
  - (dtucker) [port-aix.h] Fix prototypes.
  - (dtucker) OpenBSD CVS Sync
    - avsm@cvs.openbsd.org 2003/07/09 13:58:19
index 157117629f5259e919f42cf13aa66f73b376645c..091ccef3fa9c56bbb6f4da23d20474738bbcc425 100644 (file)
@@ -296,6 +296,10 @@ mips-sony-bsd|mips-sony-newsos4)
        else
                AC_MSG_RESULT(no)
        fi
+       sol2platform=`echo "$host"| sed -e 's/-solaris.*$//'`
+       if test "$sol2platform" -eq "i386-pc"; then
+               AC_DEFINE(BROKEN_ADDRINFO)
+       fi
        ;;
 *-*-sunos4*)
        CPPFLAGS="$CPPFLAGS -DSUNOS4"
This page took 0.071669 seconds and 5 git commands to generate.