diff options
author | tv <tv@pkgsrc.org> | 2005-10-31 14:36:08 +0000 |
---|---|---|
committer | tv <tv@pkgsrc.org> | 2005-10-31 14:36:08 +0000 |
commit | 1a7f282c3fa68ff7937ee85fcec870ac95c7f076 (patch) | |
tree | 98aeddea9a18525cf57fa314fa33fb05590f9740 /archivers | |
parent | cd4c1493af7bed2af36400eb9923e570211249c8 (diff) | |
download | pkgsrc-1a7f282c3fa68ff7937ee85fcec870ac95c7f076.tar.gz |
Fix build on Interix by including <stdlib.h> to get [u]intptr_t.
(Actually in stddef.h, but that would require yet another autoconf check.)
Diffstat (limited to 'archivers')
-rw-r--r-- | archivers/libarchive/distinfo | 4 | ||||
-rw-r--r-- | archivers/libarchive/patches/patch-aa | 9 |
2 files changed, 7 insertions, 6 deletions
diff --git a/archivers/libarchive/distinfo b/archivers/libarchive/distinfo index f0091a2a00e..a0d68ace8b6 100644 --- a/archivers/libarchive/distinfo +++ b/archivers/libarchive/distinfo @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.8 2005/10/13 21:34:16 xtraeme Exp $ +$NetBSD: distinfo,v 1.9 2005/10/31 14:36:08 tv Exp $ SHA1 (libarchive-1.02.036.tar.gz) = 419ae3956732a54242db52336d7a989d61a01de6 RMD160 (libarchive-1.02.036.tar.gz) = f89201b412421051cc392f620189e84451e46455 Size (libarchive-1.02.036.tar.gz) = 418581 bytes -SHA1 (patch-aa) = 7195f31172a55da5231d1f76ec202d6eccbfad50 +SHA1 (patch-aa) = 8ce5cce439a541a8e8986a3012a23fd902bae3bc diff --git a/archivers/libarchive/patches/patch-aa b/archivers/libarchive/patches/patch-aa index ef261d94736..d183839258c 100644 --- a/archivers/libarchive/patches/patch-aa +++ b/archivers/libarchive/patches/patch-aa @@ -1,14 +1,15 @@ -$NetBSD: patch-aa,v 1.3 2005/10/13 21:34:16 xtraeme Exp $ +$NetBSD: patch-aa,v 1.4 2005/10/31 14:36:08 tv Exp $ ---- archive.h.in.orig 2005-10-13 23:29:07.000000000 +0200 -+++ archive.h.in 2005-10-13 23:29:22.000000000 +0200 -@@ -36,7 +36,9 @@ +--- archive.h.in.orig 2005-10-13 01:35:04.000000000 -0400 ++++ archive.h.in +@@ -36,7 +36,10 @@ */ #include <sys/types.h> /* Linux requires this for off_t */ +#if HAVE_INTTYPES_H #include <inttypes.h> /* For int64_t */ +#endif ++#include <stdlib.h> /* For [u]intptr_t on Interix */ #include <unistd.h> /* For ssize_t and size_t */ #ifdef __cplusplus |