summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog4
-rw-r--r--configure.ac3
2 files changed, 5 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 5267ec30b..37c36db24 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -228,6 +228,8 @@
228 typo in error message; from djast@cs.toronto.edu 228 typo in error message; from djast@cs.toronto.edu
229 - (djm) Make auth2-pam.c compile again after dispatch.h and packet.h 229 - (djm) Make auth2-pam.c compile again after dispatch.h and packet.h
230 changes 230 changes
231 - (djm) Recent Glibc includes an incompatible sys/queue.h. Treat it as
232 bogus in configure
231 233
23220020121 23420020121
233 - (djm) Rework ssh-rand-helper: 235 - (djm) Rework ssh-rand-helper:
@@ -7375,4 +7377,4 @@
7375 - Wrote replacements for strlcpy and mkdtemp 7377 - Wrote replacements for strlcpy and mkdtemp
7376 - Released 1.0pre1 7378 - Released 1.0pre1
7377 7379
7378$Id: ChangeLog,v 1.1787 2002/01/22 12:43:12 djm Exp $ 7380$Id: ChangeLog,v 1.1788 2002/01/22 12:51:42 djm Exp $
diff --git a/configure.ac b/configure.ac
index 966f81265..de1c7f582 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,4 +1,4 @@
1i# $Id: configure.ac,v 1.12 2002/01/22 11:16:05 djm Exp $ 1i# $Id: configure.ac,v 1.13 2002/01/22 12:51:43 djm Exp $
2 2
3AC_INIT 3AC_INIT
4AC_CONFIG_SRCDIR([ssh.c]) 4AC_CONFIG_SRCDIR([ssh.c])
@@ -122,6 +122,7 @@ case "$host" in
122 check_for_libcrypt_later=1 122 check_for_libcrypt_later=1
123 AC_DEFINE(DONT_TRY_OTHER_AF) 123 AC_DEFINE(DONT_TRY_OTHER_AF)
124 AC_DEFINE(PAM_TTY_KLUDGE) 124 AC_DEFINE(PAM_TTY_KLUDGE)
125 AC_DEFINE(HAVE_BOGUS_SYS_QUEUE_H)
125 inet6_default_4in6=yes 126 inet6_default_4in6=yes
126 ;; 127 ;;
127mips-sony-bsd|mips-sony-newsos4) 128mips-sony-bsd|mips-sony-newsos4)