summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog3
-rw-r--r--configure.ac4
2 files changed, 4 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 243a87372..9a46b18d6 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,6 +1,7 @@
120020123 120020123
2 - (djm) Fix non-standard shell syntax in autoconf. Patch from 2 - (djm) Fix non-standard shell syntax in autoconf. Patch from
3 Dave Dykstra <dwd@bell-labs.com> 3 Dave Dykstra <dwd@bell-labs.com>
4 - (stevesk) fix --with-zlib=
4 5
520020122 620020122
6 - (djm) autoconf hacking: 7 - (djm) autoconf hacking:
@@ -7382,4 +7383,4 @@
7382 - Wrote replacements for strlcpy and mkdtemp 7383 - Wrote replacements for strlcpy and mkdtemp
7383 - Released 1.0pre1 7384 - Released 1.0pre1
7384 7385
7385$Id: ChangeLog,v 1.1790 2002/01/22 21:12:36 djm Exp $ 7386$Id: ChangeLog,v 1.1791 2002/01/22 21:59:31 stevesk Exp $
diff --git a/configure.ac b/configure.ac
index d002a3386..1081b6a37 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,4 +1,4 @@
1i# $Id: configure.ac,v 1.14 2002/01/22 21:12:37 djm Exp $ 1i# $Id: configure.ac,v 1.15 2002/01/22 21:59:32 stevesk Exp $
2 2
3AC_INIT 3AC_INIT
4AC_CONFIG_SRCDIR([ssh.c]) 4AC_CONFIG_SRCDIR([ssh.c])
@@ -337,7 +337,7 @@ dnl zlib is required
337AC_ARG_WITH(zlib, 337AC_ARG_WITH(zlib,
338 [ --with-zlib=PATH Use zlib in PATH], 338 [ --with-zlib=PATH Use zlib in PATH],
339 [ 339 [
340 if test "x$withval" != "xno" ; then 340 if test "x$withval" = "xno" ; then
341 AC_MSG_ERROR([*** zlib is required ***]) 341 AC_MSG_ERROR([*** zlib is required ***])
342 fi 342 fi
343 if test -d "$withval/lib"; then 343 if test -d "$withval/lib"; then