diff options
author | Werner Koch <[email protected]> | 2005-01-17 10:13:59 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2005-01-17 10:13:59 +0000 |
commit | 4440af47f7a0eb105f07303368aafacb84995868 (patch) | |
tree | a4033710fdaf3fa5cc30d2a4ccf755c1d1ef40f2 | |
parent | Make --without-included-zlib work as (diff) | |
download | gnupg-4440af47f7a0eb105f07303368aafacb84995868.tar.gz gnupg-4440af47f7a0eb105f07303368aafacb84995868.zip |
Make --without-included-zlib work as
expected. Reported by Norihiko Murase.
Diffstat (limited to '')
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | configure.ac | 2 |
2 files changed, 6 insertions, 1 deletions
@@ -1,3 +1,8 @@ +2005-01-17 Werner Koch <[email protected]> + + * configure.ac: Make --without-included-zlib work as + expected. Reported by Norihiko Murase. + 2005-01-03 David Shaw <[email protected]> * configure.ac: Use new GNUPG_CHECK_LIBUSB macro. diff --git a/configure.ac b/configure.ac index 4d728bdac..38d0ff139 100644 --- a/configure.ac +++ b/configure.ac @@ -351,7 +351,7 @@ dnl LDAP is defined only after we confirm the library is available later AC_MSG_CHECKING([whether the included zlib is requested]) AC_ARG_WITH(included-zlib, [ --with-included-zlib use the zlib code included here], -[g10_force_zlib=yes], [g10_force_zlib=no] ) +[g10_force_zlib="$withval"], [g10_force_zlib=no] ) AC_MSG_RESULT($g10_force_zlib) dnl |