summaryrefslogtreecommitdiffstats
path: root/Configure
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2005-12-06 13:37:56 +0000
committerDr. Stephen Henson <steve@openssl.org>2005-12-06 13:37:56 +0000
commit95bffa1a1f4b2e00e2b004f643b9b27cffbfcbfb (patch)
tree2a0367bc726549990a21bfd67784ed546c6fcf7e /Configure
parent974d52fdb8ed952ccadd764f56be1449d1930e2c (diff)
Fix from HEAD.
Diffstat (limited to 'Configure')
-rwxr-xr-xConfigure8
1 files changed, 6 insertions, 2 deletions
diff --git a/Configure b/Configure
index 6b4727cffa..d88fe9d288 100755
--- a/Configure
+++ b/Configure
@@ -748,9 +748,13 @@ PROCESS_ARGS:
{
$withargs{"krb5-".$1}=$2;
}
- elsif (/^--with-zlib-(lib|include)=(.*)$/)
+ elsif (/^--with-zlib-lib=(.*)$/)
{
- $withargs{"zlib-".$1}=$2;
+ $withargs{"zlib-lib"}=$1;
+ }
+ elsif (/^--with-zlib-include=(.*)$/)
+ {
+ $withargs{"zlib-include"}="-I$1";
}
else
{