summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2001-02-28 12:49:38 +1100
committerDamien Miller <djm@mindrot.org>2001-02-28 12:49:38 +1100
commit3d8ae61b878bc49807307a29b6f30c90636d3980 (patch)
treeebc54316d1528cb52fc5529500656ec5a2a2ba05
parentefb71798150bb9faaf739e0e604a21db6c31e0cf (diff)
- (djm) EGD detection patch from Tim Rice <tim@multitalents.net>
-rw-r--r--ChangeLog3
-rw-r--r--configure.in6
2 files changed, 5 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index ef5adbbec..c91d9fcec 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -3,6 +3,7 @@
3 "Bad packet length" bugs. 3 "Bad packet length" bugs.
4 - (djm) Fully revert PAM session patch (again). All PAM session init is 4 - (djm) Fully revert PAM session patch (again). All PAM session init is
5 now done before the final fork(). 5 now done before the final fork().
6 - (djm) EGD detection patch from Tim Rice <tim@multitalents.net>
6 7
720010227 820010227
8 - (bal) Applied shutdown() patch for sftp.c by Corinna Vinschen 9 - (bal) Applied shutdown() patch for sftp.c by Corinna Vinschen
@@ -4164,4 +4165,4 @@
4164 - Wrote replacements for strlcpy and mkdtemp 4165 - Wrote replacements for strlcpy and mkdtemp
4165 - Released 1.0pre1 4166 - Released 1.0pre1
4166 4167
4167$Id: ChangeLog,v 1.839 2001/02/28 00:48:06 djm Exp $ 4168$Id: ChangeLog,v 1.840 2001/02/28 01:49:38 djm Exp $
diff --git a/configure.in b/configure.in
index b1eb4d4df..e61116849 100644
--- a/configure.in
+++ b/configure.in
@@ -1,4 +1,4 @@
1# $Id: configure.in,v 1.257 2001/02/27 21:14:22 djm Exp $ 1# $Id: configure.in,v 1.258 2001/02/28 01:49:38 djm Exp $
2 2
3AC_INIT(ssh.c) 3AC_INIT(ssh.c)
4 4
@@ -1280,14 +1280,14 @@ AC_ARG_WITH(egd-pool,
1280 if test -z "$RANDOM_POOL" ; then 1280 if test -z "$RANDOM_POOL" ; then
1281 AC_MSG_CHECKING(for PRNGD/EGD socket) 1281 AC_MSG_CHECKING(for PRNGD/EGD socket)
1282 # Insert other locations here 1282 # Insert other locations here
1283 for egdsock in /var/run/egd-pool /etc/entropy /tmp/entropy ; do 1283 for egdsock in /var/run/egd-pool /tmp/egd-pool /etc/entropy /tmp/entropy ; do
1284 if test -r $egdsock && $TEST_MINUS_S_SH -c "test -S $egdsock -o -p $egdsock" ; then 1284 if test -r $egdsock && $TEST_MINUS_S_SH -c "test -S $egdsock -o -p $egdsock" ; then
1285 EGD_SOCKET="$egdsock" 1285 EGD_SOCKET="$egdsock"
1286 AC_DEFINE_UNQUOTED(EGD_SOCKET, "$EGD_SOCKET") 1286 AC_DEFINE_UNQUOTED(EGD_SOCKET, "$EGD_SOCKET")
1287 break; 1287 break;
1288 fi 1288 fi
1289 done 1289 done
1290 if test -x "$EGD_SOCKET" ; then 1290 if test ! -z "$EGD_SOCKET" ; then
1291 AC_MSG_RESULT($EGD_SOCKET) 1291 AC_MSG_RESULT($EGD_SOCKET)
1292 else 1292 else
1293 AC_MSG_RESULT(not found) 1293 AC_MSG_RESULT(not found)