search for: zlib_version

Displaying 7 results from an estimated 7 matches for "zlib_version".

Did you mean: lib_version
2017 Feb 12
2
Bug with zlib version checking for zlib >= 1.2.10, R version 3.3.2
...ib version checking code does not handle double digits for the patch version in the semantic versioning scheme. Consequently, a ./configure fails when using a zlib version ? 1.5.10. I suggest something like the following patch: --- a/m4/R.m4 +++ b/m4/R.m4 @@ -3116,7 +3116,7 @@ int main() { #ifdef ZLIB_VERSION /* Work around Debian bug: it uses 1.2.3.4 even though there was no such version on the master site zlib.net */ - exit(strncmp(ZLIB_VERSION, "1.2.5", 5) < 0); + exit(strncmp(ZLIB_VERSION, "1.2.5", 5) < 0 && (strlen(ZLIB_VERSION) < 6 || strncmp(ZLIB_VERSIO...
2017 Feb 13
0
Bug with zlib version checking for zlib >= 1.2.10, R version 3.3.2
...e double digits for the > patch version in the semantic versioning scheme. Consequently, a > ./configure fails when using a zlib version ? 1.5.10. I suggest > something like the following patch: > > --- a/m4/R.m4 > +++ b/m4/R.m4 > @@ -3116,7 +3116,7 @@ int main() { > #ifdef ZLIB_VERSION > /* Work around Debian bug: it uses 1.2.3.4 even though there was no such > version on the master site zlib.net */ > - exit(strncmp(ZLIB_VERSION, "1.2.5", 5) < 0); > + exit(strncmp(ZLIB_VERSION, "1.2.5", 5) < 0 && (strlen(ZLIB_VERSION) < 6 ||...
2023 Aug 18
2
[Bug 3604] New: Building OpenSSH fails with zlib1.3 installed
...-dev at mindrot.org" [...] | #define HAVE_BASENAME 1 | #define WITH_ZLIB 1 | #define HAVE_LIBZ 1 | /* end confdefs.h. */ | | #include <stdio.h> | #include <stdlib.h> | #include <zlib.h> | | int | main (void) | { | | int a=0, b=0, c=0, d=0, n, v; | n = sscanf(ZLIB_VERSION, "%d.%d.%d.%d", &a, &b, &c, &d); | if (n != 3 && n != 4) | exit(1); | v = a*1000000 + b*10000 + c*100 + d; | fprintf(stderr, "found zlib version %s (%d)\n", ZLIB_VERSION, v); | | /* 1.1.4 is OK */ | if (a == 1...
2002 Jan 07
0
rsync-2.5.1 / zlib patches
...utility functions for the compression library * Copyright (C) 1995-1998 Jean-loup Gailly. * For conditions of distribution and use, see copyright notice in zlib.h @@ -26,7 +27,7 @@ ""}; -const char * ZEXPORT zlibVersion() +const char * ZEXPORT zlibVersion(void) { return ZLIB_VERSION; } PROJECT_ROOT:[rsync_vms.ZLIB]ZUTIL_H.GDIFF;2 --- ref_zlib:zutil.h Fri May 22 08:45:43 1998 +++ lcl_zlib:zutil.h Sun Jan 6 18:10:19 2002 @@ -1,3 +1,4 @@ +/* Converted by prj_src:unix_c_to_vms_c.tpu AND PRJ_ZLIB:ZUTIL.TPU on 6-JAN-2002 18:10:19.38 OPENVMS_AXP */ /* zutil.h -- interna...
2004 Dec 27
0
[patch] some buildsystem fixes for crosscompiling
...nssh-3.9p1/configure.ac --- openssh-3.9p1.orig/configure.ac Tue Dec 14 07:41:04 2004 +++ openssh-3.9p1/configure.ac Tue Dec 14 07:41:50 2004 @@ -642,34 +642,7 @@ ] ) -AC_MSG_CHECKING(for zlib 1.1.4 or greater) -AC_TRY_RUN([ -#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.lo...
2002 Jan 30
1
Patch: update zlib/* to 1.1.3
...:47 -0000 @@ -1,5 +1,5 @@ /* zlib.h -- interface of the 'zlib' general purpose compression library - version 1.1.2, March 19th, 1998 + version 1.1.3, July 9th, 1998 Copyright (C) 1995-1998 Jean-loup Gailly and Mark Adler @@ -37,7 +37,7 @@ extern "C" { #endif -#define ZLIB_VERSION "1.1.2" +#define ZLIB_VERSION "1.1.3" /* The 'zlib' compression library provides in-memory compression and @@ -169,7 +169,7 @@ /* basic functions */ -extern const char * ZEXPORT zlibVersion OF((void)); +ZEXTERN const char * ZEXPORT...
2012 Aug 20
13
[PATCH 00/12] Multidisk support
Hello, the following patches should get multidisk access working. The syntax accepted is the following: (hdx,y)/path/to/file where x is the disk number and start at 0 and the y is the partition number starting at 1. So (hd0,1) is the first partition of the first disk. the other accepted syntax is using MBR's 32 bits disk signature so for example: (mbr:0x12345678,2)/foo/bar would address