diff options
-rw-r--r-- | ChangeLog | 3 | ||||
-rw-r--r-- | configure.ac | 4 |
2 files changed, 4 insertions, 3 deletions
@@ -1,6 +1,7 @@ | |||
1 | 20020123 | 1 | 20020123 |
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 | ||
5 | 20020122 | 6 | 20020122 |
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 @@ | |||
1 | i# $Id: configure.ac,v 1.14 2002/01/22 21:12:37 djm Exp $ | 1 | i# $Id: configure.ac,v 1.15 2002/01/22 21:59:32 stevesk Exp $ |
2 | 2 | ||
3 | AC_INIT | 3 | AC_INIT |
4 | AC_CONFIG_SRCDIR([ssh.c]) | 4 | AC_CONFIG_SRCDIR([ssh.c]) |
@@ -337,7 +337,7 @@ dnl zlib is required | |||
337 | AC_ARG_WITH(zlib, | 337 | AC_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 |