summaryrefslogtreecommitdiff
path: root/archivers
diff options
context:
space:
mode:
authorwiz <wiz@pkgsrc.org>2016-07-07 06:27:17 +0000
committerwiz <wiz@pkgsrc.org>2016-07-07 06:27:17 +0000
commit9e928591a239d9441d5ea4212ae600645434dde7 (patch)
tree875647fe299eebceea5eb9cdc81788f20ed0e214 /archivers
parent09cb1e776880ee778d7e833b5ceb59b99d6e5a81 (diff)
downloadpkgsrc-9e928591a239d9441d5ea4212ae600645434dde7.tar.gz
Remove obsolete patch (not in distinfo).
Diffstat (limited to 'archivers')
-rw-r--r--archivers/ocaml-zip/patches/patch-zlibstubs.c14
1 files changed, 0 insertions, 14 deletions
diff --git a/archivers/ocaml-zip/patches/patch-zlibstubs.c b/archivers/ocaml-zip/patches/patch-zlibstubs.c
deleted file mode 100644
index 840c0baa9f6..00000000000
--- a/archivers/ocaml-zip/patches/patch-zlibstubs.c
+++ /dev/null
@@ -1,14 +0,0 @@
-$NetBSD: patch-zlibstubs.c,v 1.1 2016/05/05 11:27:47 jaapb Exp $
-
-Use proper definition of zlib crc32 function
---- zlibstubs.c.orig 2012-10-12 03:36:07.000000000 +0000
-+++ zlibstubs.c
-@@ -168,7 +168,7 @@ value camlzip_inflateEnd(value vzs)
-
- value camlzip_update_crc32(value crc, value buf, value pos, value len)
- {
-- return caml_copy_int32(crc32((uint32) Int32_val(crc),
-+ return caml_copy_int32(crc32((uLong) Int32_val(crc),
- &Byte_u(buf, Long_val(pos)),
- Long_val(len)));
- }