Don't include zlib header dir if it is not defined.
This commit is contained in:
parent
df278aff3e
commit
1291dfdead
@ -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
|
||||
{
|
||||
|
@ -292,7 +292,7 @@ for (;;)
|
||||
{ $cflags .= " $val";}
|
||||
|
||||
if ($key eq "ZLIB_INCLUDE")
|
||||
{ $cflags .= " -I$val";}
|
||||
{ $cflags .= " $val" if $val ne "";}
|
||||
|
||||
if ($key eq "LIBZLIB")
|
||||
{ $zlib_lib = "$val" if $val ne "";}
|
||||
|
Loading…
x
Reference in New Issue
Block a user