Displaying 2 results from an estimated 2 matches for "zlib_check_nonfatal".
2008 Sep 01
3
[Bug 1519] New: zlib version check is fake in the configure script. installation failure.
...allation failure always appears if the option
--without-zlib-version-check
 is not used while calling the configure script. 
Reminder : Openssh needs at least zlib version 1.2.3.
If someone checks the configure script then check the line 10672 :
one can see that the script checks if the variable $zlib_check_nonfatal
is set
:
[line10672] if test -z "$zlib_check_nonfatal" ; then
    - If the variable $zlib_check_nonfatal is set then "zlib too old"
does not
happen.
The big problem is that the only other place where $zlib_check_nonfatal
could
be set
is at line 10598 :
[line 10598] zlib_check_n...
2004 Dec 27
0
[patch] some buildsystem fixes for crosscompiling
...-#include <zlib.h>
-int main()
-{
-	int a, b, c, v;
-	if (sscanf(ZLIB_VERSION, "%d.%d.%d", &a, &b, &c) != 3)
-		exit(1);
-	v = a*1000000 + b*1000 + c;
-	if (v >= 1001004)
-		exit(0);
-	exit(2);
-}
-	],
-	AC_MSG_RESULT(yes),
-	[ AC_MSG_RESULT(no)
-	  if test -z "$zlib_check_nonfatal" ; then
-		AC_MSG_ERROR([*** zlib too old - check config.log ***
-Your reported zlib version has known security problems.  It's possible your
-vendor has fixed these problems without changing the version number.  If you
-are sure this is the case, you can disable the check by running
-&quo...