commit | cc7399e79cbe45ad363d2a67dd04cb599f9481eb | [log] [tgz] |
---|---|---|
author | Dr. Stephen Henson <steve@openssl.org> | Tue Apr 07 16:33:26 2009 +0000 |
committer | Dr. Stephen Henson <steve@openssl.org> | Tue Apr 07 16:33:26 2009 +0000 |
tree | 258413dcd27766c3a632e5aefc20368af61abf4c | |
parent | 14b3f1007ec640fa8fa293626b7dc9edfa67d9e0 [diff] [blame] |
Changes from 1.0.0-stable.
diff --git a/Configure b/Configure index ae8ce89..8f9f2de 100755 --- a/Configure +++ b/Configure
@@ -1218,7 +1218,14 @@ $cflags = "-DZLIB $cflags"; if (defined($disabled{"zlib-dynamic"})) { - $lflags = "$lflags -lz"; + if (defined($withargs{"zlib-lib"})) + { + $lflags = "$lflags -L" . $withargs{"zlib-lib"} . " -lz"; + } + else + { + $lflags = "$lflags -lz"; + } } else {