summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Rice <tim@multitalents.net>2010-01-16 12:23:25 -0800
committerTim Rice <tim@multitalents.net>2010-01-16 12:23:25 -0800
commit4a7db1ca2fbd794ffa41bad2bb8e0aec0f1595f0 (patch)
tree7e1b20fa91dd548dc412b987363bc56f11d4f291
parent999aaf4182fe7f0b21600299826139520b1b8212 (diff)
- (tim) [configure.ac] Define BROKEN_GETADDRINFO on SVR5 systems. The native
getaddrinfo() is too old and limited for addr_pton() in addrmatch.c.
-rw-r--r--ChangeLog2
-rw-r--r--configure.ac5
2 files changed, 5 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index dfae0d687..00d78c698 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -13,6 +13,8 @@
13 variable warnings. 13 variable warnings.
14 - (dtucker) [openbsd-compat/openbsd-compat.h] Typo. 14 - (dtucker) [openbsd-compat/openbsd-compat.h] Typo.
15 - (tim) [regress/portnum.sh] Shell portability fix. 15 - (tim) [regress/portnum.sh] Shell portability fix.
16 - (tim) [configure.ac] Define BROKEN_GETADDRINFO on SVR5 systems. The native
17 getaddrinfo() is too old and limited for addr_pton() in addrmatch.c.
16 18
1720100115 1920100115
18 - (dtucker) OpenBSD CVS Sync 20 - (dtucker) OpenBSD CVS Sync
diff --git a/configure.ac b/configure.ac
index 3293e61c6..a105de71d 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,4 +1,4 @@
1# $Id: configure.ac,v 1.435 2010/01/15 01:38:30 dtucker Exp $ 1# $Id: configure.ac,v 1.436 2010/01/16 20:23:25 tim Exp $
2# 2#
3# Copyright (c) 1999-2004 Damien Miller 3# Copyright (c) 1999-2004 Damien Miller
4# 4#
@@ -15,7 +15,7 @@
15# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 15# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
16 16
17AC_INIT(OpenSSH, Portable, openssh-unix-dev@mindrot.org) 17AC_INIT(OpenSSH, Portable, openssh-unix-dev@mindrot.org)
18AC_REVISION($Revision: 1.435 $) 18AC_REVISION($Revision: 1.436 $)
19AC_CONFIG_SRCDIR([ssh.c]) 19AC_CONFIG_SRCDIR([ssh.c])
20 20
21AC_CONFIG_HEADER(config.h) 21AC_CONFIG_HEADER(config.h)
@@ -747,6 +747,7 @@ mips-sony-bsd|mips-sony-newsos4)
747 AC_DEFINE(UNIXWARE_LONG_PASSWORDS, 1, [Support passwords > 8 chars]) 747 AC_DEFINE(UNIXWARE_LONG_PASSWORDS, 1, [Support passwords > 8 chars])
748 AC_DEFINE(USE_PIPES) 748 AC_DEFINE(USE_PIPES)
749 AC_DEFINE(SETEUID_BREAKS_SETUID) 749 AC_DEFINE(SETEUID_BREAKS_SETUID)
750 AC_DEFINE(BROKEN_GETADDRINFO)
750 AC_DEFINE(BROKEN_SETREUID) 751 AC_DEFINE(BROKEN_SETREUID)
751 AC_DEFINE(BROKEN_SETREGID) 752 AC_DEFINE(BROKEN_SETREGID)
752 AC_DEFINE(PASSWD_NEEDS_USERNAME) 753 AC_DEFINE(PASSWD_NEEDS_USERNAME)