summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog6
-rw-r--r--configure.in5
2 files changed, 9 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index f89a081d6..0addd6890 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
120010715
2 - (bal) Set "BROKEN_GETADDRINFO" for darwin platform. Reported by
3 Josh Larios <jdlarios@cac.washington.edu>
4
120010714 520010714
2 - (stevesk) change getopt() declaration 6 - (stevesk) change getopt() declaration
3 - (stevesk) configure.in: use ll suffix for long long constant 7 - (stevesk) configure.in: use ll suffix for long long constant
@@ -6030,4 +6034,4 @@
6030 - Wrote replacements for strlcpy and mkdtemp 6034 - Wrote replacements for strlcpy and mkdtemp
6031 - Released 1.0pre1 6035 - Released 1.0pre1
6032 6036
6033$Id: ChangeLog,v 1.1401 2001/07/15 02:09:28 stevesk Exp $ 6037$Id: ChangeLog,v 1.1402 2001/07/15 18:30:42 mouring Exp $
diff --git a/configure.in b/configure.in
index 336d4056e..982ad5e20 100644
--- a/configure.in
+++ b/configure.in
@@ -1,4 +1,4 @@
1# $Id: configure.in,v 1.300 2001/07/15 02:09:29 stevesk Exp $ 1# $Id: configure.in,v 1.301 2001/07/15 18:30:44 mouring Exp $
2 2
3AC_INIT(ssh.c) 3AC_INIT(ssh.c)
4 4
@@ -74,6 +74,9 @@ case "$host" in
74*-*-dgux*) 74*-*-dgux*)
75 AC_DEFINE(IP_TOS_IS_BROKEN) 75 AC_DEFINE(IP_TOS_IS_BROKEN)
76 ;; 76 ;;
77*-*-darwin*)
78 AC_DEFINE(BROKEN_GETADDRINFO)
79 ;;
77*-*-hpux10*) 80*-*-hpux10*)
78 if test -z "$GCC"; then 81 if test -z "$GCC"; then
79 CFLAGS="$CFLAGS -Ae" 82 CFLAGS="$CFLAGS -Ae"