diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | configure.in | 3 |
2 files changed, 6 insertions, 2 deletions
@@ -24,6 +24,9 @@ | |||
24 | - (djm) SA_INTERRUPT is the converse of SA_RESTART, apply it only for | 24 | - (djm) SA_INTERRUPT is the converse of SA_RESTART, apply it only for |
25 | SIGALRM. | 25 | SIGALRM. |
26 | - (djm) Move entropy.c over to mysignal() | 26 | - (djm) Move entropy.c over to mysignal() |
27 | - (djm) SunOS 4.x also needs to define HAVE_BOGUS_SYS_QUEUE_H as it has | ||
28 | a <sys/queue.h> that lacks the TAILQ_* macros. Patch from Todd C. | ||
29 | Miller <Todd.Miller@courtesan.com> | ||
27 | 30 | ||
28 | 20010217 | 31 | 20010217 |
29 | - (bal) OpenBSD Sync: | 32 | - (bal) OpenBSD Sync: |
@@ -4031,4 +4034,4 @@ | |||
4031 | - Wrote replacements for strlcpy and mkdtemp | 4034 | - Wrote replacements for strlcpy and mkdtemp |
4032 | - Released 1.0pre1 | 4035 | - Released 1.0pre1 |
4033 | 4036 | ||
4034 | $Id: ChangeLog,v 1.796 2001/02/18 04:28:11 djm Exp $ | 4037 | $Id: ChangeLog,v 1.797 2001/02/18 04:29:28 djm Exp $ |
diff --git a/configure.in b/configure.in index a3ec88c6d..cbc866ad5 100644 --- a/configure.in +++ b/configure.in | |||
@@ -1,4 +1,4 @@ | |||
1 | # $Id: configure.in,v 1.245 2001/02/18 02:07:07 djm Exp $ | 1 | # $Id: configure.in,v 1.246 2001/02/18 04:29:29 djm Exp $ |
2 | 2 | ||
3 | AC_INIT(ssh.c) | 3 | AC_INIT(ssh.c) |
4 | 4 | ||
@@ -175,6 +175,7 @@ mips-sony-bsd|mips-sony-newsos4) | |||
175 | CPPFLAGS="$CPPFLAGS -DSUNOS4" | 175 | CPPFLAGS="$CPPFLAGS -DSUNOS4" |
176 | AC_CHECK_FUNCS(getpwanam) | 176 | AC_CHECK_FUNCS(getpwanam) |
177 | AC_DEFINE(PAM_SUN_CODEBASE) | 177 | AC_DEFINE(PAM_SUN_CODEBASE) |
178 | AC_DEFINE(HAVE_BOGUS_SYS_QUEUE_H) | ||
178 | conf_utmp_location=/etc/utmp | 179 | conf_utmp_location=/etc/utmp |
179 | conf_wtmp_location=/var/adm/wtmp | 180 | conf_wtmp_location=/var/adm/wtmp |
180 | conf_lastlog_location=/var/adm/lastlog | 181 | conf_lastlog_location=/var/adm/lastlog |