]> git.ipfire.org Git - thirdparty/openssh-portable.git/commitdiff
- (tim) [configure.ac] Define BROKEN_GETADDRINFO on SVR5 systems. The native
authorTim Rice <tim@multitalents.net>
Sat, 16 Jan 2010 20:23:25 +0000 (12:23 -0800)
committerTim Rice <tim@multitalents.net>
Sat, 16 Jan 2010 20:23:25 +0000 (12:23 -0800)
   getaddrinfo() is too old and limited for addr_pton() in addrmatch.c.

ChangeLog
configure.ac

index dfae0d68716a2345347818fbb4e600a60c507603..00d78c698ab634050fa36785d907515382357142 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -13,6 +13,8 @@
    variable warnings.
  - (dtucker) [openbsd-compat/openbsd-compat.h] Typo.
  - (tim) [regress/portnum.sh] Shell portability fix.
+ - (tim) [configure.ac] Define BROKEN_GETADDRINFO on SVR5 systems. The native
+   getaddrinfo() is too old and limited for addr_pton() in addrmatch.c.
 
 20100115
  - (dtucker) OpenBSD CVS Sync
index 3293e61c6b417c5487d724db9478896367314ff9..a105de71d2ab53ae9bf2d03c46b2b2746b84be0d 100644 (file)
@@ -1,4 +1,4 @@
-# $Id: configure.ac,v 1.435 2010/01/15 01:38:30 dtucker Exp $
+# $Id: configure.ac,v 1.436 2010/01/16 20:23:25 tim Exp $
 #
 # Copyright (c) 1999-2004 Damien Miller
 #
@@ -15,7 +15,7 @@
 # OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
 
 AC_INIT(OpenSSH, Portable, openssh-unix-dev@mindrot.org)
-AC_REVISION($Revision: 1.435 $)
+AC_REVISION($Revision: 1.436 $)
 AC_CONFIG_SRCDIR([ssh.c])
 
 AC_CONFIG_HEADER(config.h)
@@ -747,6 +747,7 @@ mips-sony-bsd|mips-sony-newsos4)
        AC_DEFINE(UNIXWARE_LONG_PASSWORDS, 1, [Support passwords > 8 chars])
        AC_DEFINE(USE_PIPES)
        AC_DEFINE(SETEUID_BREAKS_SETUID)
+       AC_DEFINE(BROKEN_GETADDRINFO)
        AC_DEFINE(BROKEN_SETREUID)
        AC_DEFINE(BROKEN_SETREGID)
        AC_DEFINE(PASSWD_NEEDS_USERNAME)