Don't include zlib header dir if it is not defined.

This commit is contained in:
Dr. Stephen Henson 2005-12-06 13:36:59 +00:00
parent df278aff3e
commit 1291dfdead
2 changed files with 7 additions and 3 deletions

View File

@ -748,9 +748,13 @@ PROCESS_ARGS:
{ {
$withargs{"krb5-".$1}=$2; $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 else
{ {

View File

@ -292,7 +292,7 @@ for (;;)
{ $cflags .= " $val";} { $cflags .= " $val";}
if ($key eq "ZLIB_INCLUDE") if ($key eq "ZLIB_INCLUDE")
{ $cflags .= " -I$val";} { $cflags .= " $val" if $val ne "";}
if ($key eq "LIBZLIB") if ($key eq "LIBZLIB")
{ $zlib_lib = "$val" if $val ne "";} { $zlib_lib = "$val" if $val ne "";}