summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CREDITS1
-rw-r--r--ChangeLog4
-rw-r--r--configure.in9
3 files changed, 14 insertions, 0 deletions
diff --git a/CREDITS b/CREDITS
index c59babe74..f95260e84 100644
--- a/CREDITS
+++ b/CREDITS
@@ -35,6 +35,7 @@ Jim Knoble <jmknoble@pobox.com> - Many patches
35jonchen (email unknown) - the original author of PAM support of SSH 35jonchen (email unknown) - the original author of PAM support of SSH
36Juergen Keil <jk@tools.de> - scp bugfixing 36Juergen Keil <jk@tools.de> - scp bugfixing
37Kees Cook <cook@cpoint.net> - scp fixes 37Kees Cook <cook@cpoint.net> - scp fixes
38Kenji Miyake <kenji@miyake.org> - Configure fixes
38Kevin O'Connor <kevin_oconnor@standardandpoors.com> - RSAless operation 39Kevin O'Connor <kevin_oconnor@standardandpoors.com> - RSAless operation
39Kiyokazu SUTO <suto@ks-and-ks.ne.jp> - Bugfixes 40Kiyokazu SUTO <suto@ks-and-ks.ne.jp> - Bugfixes
40Lutz Jaenicke <Lutz.Jaenicke@aet.TU-Cottbus.DE> - Bugfixes 41Lutz Jaenicke <Lutz.Jaenicke@aet.TU-Cottbus.DE> - Bugfixes
diff --git a/ChangeLog b/ChangeLog
index 8da1f8226..662f9cbdd 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
120000609
2 - (djm) Patch from Kenji Miyake <kenji@miyake.org> to disable utmp usage
3 (in favour of utmpx) on Solaris 8
4
120000606 520000606
2 - (djm) Cleanup of entropy.c. Reorganised code, removed second pass through 6 - (djm) Cleanup of entropy.c. Reorganised code, removed second pass through
3 list of commands (by default). Removed verbose debugging (by default). 7 list of commands (by default). Removed verbose debugging (by default).
diff --git a/configure.in b/configure.in
index a886fbbd6..9eb38393e 100644
--- a/configure.in
+++ b/configure.in
@@ -106,6 +106,15 @@ case "$host" in
106 need_dash_r=1 106 need_dash_r=1
107 # hardwire lastlog location (can't detect it on some versions) 107 # hardwire lastlog location (can't detect it on some versions)
108 conf_lastlog_location="/var/adm/lastlog" 108 conf_lastlog_location="/var/adm/lastlog"
109 AC_MSG_CHECKING(for obsolete utmp and wtmp in solaris2.x)
110 sol2ver=`echo "$host"| sed -e 's/.*[[0-9]]\.//'`
111 if test "$sol2ver" -ge 8; then
112 AC_MSG_RESULT(yes)
113 AC_DEFINE(DISABLE_UTMP)
114 AC_DEFINE(DISABLE_WTMP)
115 else
116 AC_MSG_RESULT(no)
117 fi
109 ;; 118 ;;
110*-*-sunos4*) 119*-*-sunos4*)
111 CFLAGS="$CFLAGS -DSUNOS4" 120 CFLAGS="$CFLAGS -DSUNOS4"