summaryrefslogtreecommitdiff
path: root/dev-lang/R/files/R-3.3.2-zlib-1.2.10-backport.patch
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2018-07-14 20:57:42 +0100
committerV3n3RiX <venerix@redcorelinux.org>2018-07-14 20:57:42 +0100
commit1798c4aeca70ac8d0a243684d6a798fbc65735f8 (patch)
treee48e19cb6fa03de18e1c63e1a93371b7ebc4eb56 /dev-lang/R/files/R-3.3.2-zlib-1.2.10-backport.patch
parentd87262dd706fec50cd150aab3e93883b6337466d (diff)
gentoo resync : 14.07.2018
Diffstat (limited to 'dev-lang/R/files/R-3.3.2-zlib-1.2.10-backport.patch')
-rw-r--r--dev-lang/R/files/R-3.3.2-zlib-1.2.10-backport.patch20
1 files changed, 0 insertions, 20 deletions
diff --git a/dev-lang/R/files/R-3.3.2-zlib-1.2.10-backport.patch b/dev-lang/R/files/R-3.3.2-zlib-1.2.10-backport.patch
deleted file mode 100644
index 2cfb30da90fd..000000000000
--- a/dev-lang/R/files/R-3.3.2-zlib-1.2.10-backport.patch
+++ /dev/null
@@ -1,20 +0,0 @@
-Index: R.m4
-===================================================================
---- m4/R.m4 (revision 71152)
-+++ m4/R.m4 (revision 71889)
-@@ -3105,10 +3105,11 @@
- #include <string.h>
- #include <zlib.h>
- 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);
-+#ifdef ZLIB_VERNUM
-+ if (ZLIB_VERNUM < 0x1250) {
-+ exit(1);
-+ }
-+ exit(0);
- #else
- exit(1);
- #endif