Commit 1291dfde authored by Dr. Stephen Henson's avatar Dr. Stephen Henson
Browse files

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

parent df278aff
Loading
Loading
Loading
Loading
+6 −2
Original line number Diff line number Diff line
@@ -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
				{
+1 −1
Original line number Diff line number Diff line
@@ -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 "";}