提交 1291dfde 编写于 作者: D Dr. Stephen Henson

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

上级 df278aff
......@@ -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 "";}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册