summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog6
-rw-r--r--configure.ac8
2 files changed, 10 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index 231a4d4b5..243a87372 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
120020123
2 - (djm) Fix non-standard shell syntax in autoconf. Patch from
3 Dave Dykstra <dwd@bell-labs.com>
4
120020122 520020122
2 - (djm) autoconf hacking: 6 - (djm) autoconf hacking:
3 - We don't support --without-zlib currently, so don't allow it. 7 - We don't support --without-zlib currently, so don't allow it.
@@ -7378,4 +7382,4 @@
7378 - Wrote replacements for strlcpy and mkdtemp 7382 - Wrote replacements for strlcpy and mkdtemp
7379 - Released 1.0pre1 7383 - Released 1.0pre1
7380 7384
7381$Id: ChangeLog,v 1.1789 2002/01/22 12:52:17 djm Exp $ 7385$Id: ChangeLog,v 1.1790 2002/01/22 21:12:36 djm Exp $
diff --git a/configure.ac b/configure.ac
index de1c7f582..d002a3386 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,4 +1,4 @@
1i# $Id: configure.ac,v 1.13 2002/01/22 12:51:43 djm Exp $ 1i# $Id: configure.ac,v 1.14 2002/01/22 21:12:37 djm Exp $
2 2
3AC_INIT 3AC_INIT
4AC_CONFIG_SRCDIR([ssh.c]) 4AC_CONFIG_SRCDIR([ssh.c])
@@ -915,10 +915,12 @@ AC_ARG_WITH(prngd-socket,
915 if test ! -z "$PRNGD_PORT" ; then 915 if test ! -z "$PRNGD_PORT" ; then
916 AC_MSG_ERROR(You may not specify both a PRNGD/EGD port and socket) 916 AC_MSG_ERROR(You may not specify both a PRNGD/EGD port and socket)
917 fi 917 fi
918 if ! echo "$withval" | grep -q '^/' ; then 918 if echo "$withval" | grep '^/' >/dev/null 2>&1 ; then
919 # Good
920 else
919 AC_MSG_ERROR(You must specify an absolute path to the entropy socket) 921 AC_MSG_ERROR(You must specify an absolute path to the entropy socket)
920 fi 922 fi
921 if ! test -r "$withval" ; then 923 if test ! -r "$withval" ; then
922 AC_MSG_WARN(Entropy socket is not readable) 924 AC_MSG_WARN(Entropy socket is not readable)
923 fi 925 fi
924 PRNGD_SOCKET="$withval" 926 PRNGD_SOCKET="$withval"