summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog6
-rw-r--r--configure.ac4
2 files changed, 7 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index effd2e90c..eeee1958b 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
120020331
2 - (tim) [configure.ac] use /bin/test -L to work around broken builtin on
3 Solaris 8
4
120020330 520020330
2 - (stevesk) [configure.ac] remove header check for sys/ttcompat.h 6 - (stevesk) [configure.ac] remove header check for sys/ttcompat.h
3 bug 167 7 bug 167
@@ -8093,4 +8097,4 @@
8093 - Wrote replacements for strlcpy and mkdtemp 8097 - Wrote replacements for strlcpy and mkdtemp
8094 - Released 1.0pre1 8098 - Released 1.0pre1
8095 8099
8096$Id: ChangeLog,v 1.2002 2002/03/30 17:55:21 stevesk Exp $ 8100$Id: ChangeLog,v 1.2003 2002/03/31 19:23:06 tim Exp $
diff --git a/configure.ac b/configure.ac
index 5d7bc20e6..09607b07d 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,4 +1,4 @@
1# $Id: configure.ac,v 1.29 2002/03/30 17:55:23 stevesk Exp $ 1# $Id: configure.ac,v 1.30 2002/03/31 19:23:07 tim Exp $
2 2
3AC_INIT 3AC_INIT
4AC_CONFIG_SRCDIR([ssh.c]) 4AC_CONFIG_SRCDIR([ssh.c])
@@ -1015,7 +1015,7 @@ AC_DEFINE_UNQUOTED(ENTROPY_TIMEOUT_MSEC, $entropy_timeout)
1015 1015
1016OPATH=$PATH 1016OPATH=$PATH
1017PATH=/bin:/usr/bin 1017PATH=/bin:/usr/bin
1018test -L /bin && PATH=/usr/bin 1018/bin/test -L /bin && PATH=/usr/bin
1019test -d /sbin && PATH=$PATH:/sbin 1019test -d /sbin && PATH=$PATH:/sbin
1020test -d /usr/sbin && PATH=$PATH:/usr/sbin 1020test -d /usr/sbin && PATH=$PATH:/usr/sbin
1021PATH=$PATH:/etc:$OPATH 1021PATH=$PATH:/etc:$OPATH