summaryrefslogtreecommitdiffstats
path: root/configure.ac
diff options
context:
space:
mode:
authorTim Rice <tim@multitalents.net>2002-01-30 22:14:03 -0800
committerTim Rice <tim@multitalents.net>2002-01-30 22:14:03 -0800
commit1e2c600892c322e3c117bc111f0f8fbdce757a69 (patch)
treecadc3e8be70831d630a8d69acd34da9fed2fbcdc /configure.ac
parent8eb71417584914688f89a77170642c8ce58b1a3e (diff)
[configure.ac] fix logic on when ssh-rand-helper is installed.
[sshd_config] put back in line that tells what PATH was compiled into sshd.
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac6
1 files changed, 3 insertions, 3 deletions
diff --git a/configure.ac b/configure.ac
index a23d3249..80d3e48d 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,4 +1,4 @@
-# $Id: configure.ac,v 1.16 2002/01/23 00:21:01 djm Exp $
+# $Id: configure.ac,v 1.17 2002/01/31 06:14:03 tim Exp $
AC_INIT
AC_CONFIG_SRCDIR([ssh.c])
@@ -884,8 +884,8 @@ if test ! -z "$OPENSSL_SEEDS_ITSELF" -a -z "$USE_RAND_HELPER" ; then
AC_DEFINE(OPENSSL_PRNG_ONLY)
RAND_MSG="OpenSSL internal ONLY"
INSTALL_SSH_RAND_HELPER=""
-elif test ! -z "$OPENSSL_SEEDS_ITSELF" -a ! -z "$USE_RAND_HELPER" ; then
- # OpenSSL with fallback to rand helper
+elif test ! -z "$USE_RAND_HELPER" ; then
+ # install rand helper
RAND_MSG="ssh-rand-helper"
INSTALL_SSH_RAND_HELPER="yes"
fi