summaryrefslogtreecommitdiff
path: root/archivers/rzip
diff options
context:
space:
mode:
authorrillig <rillig@pkgsrc.org>2005-10-23 17:53:01 +0000
committerrillig <rillig@pkgsrc.org>2005-10-23 17:53:01 +0000
commit7d5261f72e703d88a069bf14bbba74693ab46638 (patch)
tree877f4c45b1635e9c1244ebe695d786f8994bbfe4 /archivers/rzip
parentc02344389873a80cc1aadf2fde11c7c2fa2bf04c (diff)
downloadpkgsrc-7d5261f72e703d88a069bf14bbba74693ab46638.tar.gz
Include <stdint.h> on Darwin to make the integer types known.
Fixes PR 31896.
Diffstat (limited to 'archivers/rzip')
-rw-r--r--archivers/rzip/distinfo3
-rw-r--r--archivers/rzip/patches/patch-ac14
2 files changed, 16 insertions, 1 deletions
diff --git a/archivers/rzip/distinfo b/archivers/rzip/distinfo
index b44d6416d4a..d68eb62a28e 100644
--- a/archivers/rzip/distinfo
+++ b/archivers/rzip/distinfo
@@ -1,7 +1,8 @@
-$NetBSD: distinfo,v 1.3 2005/02/23 14:45:26 agc Exp $
+$NetBSD: distinfo,v 1.4 2005/10/23 17:53:01 rillig Exp $
SHA1 (rzip-2.0.tar.gz) = 65d3d95689d14a6fb3b7c805768bf34868de5c17
RMD160 (rzip-2.0.tar.gz) = a3bc1bb5afe9025ec53cc03bf5f55d65728c0529
Size (rzip-2.0.tar.gz) = 42699 bytes
SHA1 (patch-aa) = efa046e26d01dc5d38cb4648119e8cd2ad91ea41
SHA1 (patch-ab) = b00a141d6b4ca6fb970eae3783a84c2fb7f8cc36
+SHA1 (patch-ac) = 17ce38121ea20b705c7aa19fa8103dd184597df0
diff --git a/archivers/rzip/patches/patch-ac b/archivers/rzip/patches/patch-ac
new file mode 100644
index 00000000000..eb52e7394ab
--- /dev/null
+++ b/archivers/rzip/patches/patch-ac
@@ -0,0 +1,14 @@
+$NetBSD: patch-ac,v 1.1 2005/10/23 17:53:01 rillig Exp $
+
+--- rzip.h.orig 2005-10-23 11:24:14.000000000 +0200
++++ rzip.h 2005-10-23 11:25:45.000000000 +0200
+@@ -26,6 +26,9 @@
+ #include "config.h"
+
+ #include <sys/types.h>
++#ifdef __APPLE__ /* Darwin */
++#include <stdint.h>
++#endif
+ #include <unistd.h>
+ #include <stdio.h>
+ #include <stddef.h>