pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/archivers/libarchive Fix build on Interix by including...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/65a8133aea3a
branches:  trunk
changeset: 501905:65a8133aea3a
user:      tv <tv%pkgsrc.org@localhost>
date:      Mon Oct 31 14:36:08 2005 +0000

description:
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:

 archivers/libarchive/distinfo         |  4 ++--
 archivers/libarchive/patches/patch-aa |  9 +++++----
 2 files changed, 7 insertions(+), 6 deletions(-)

diffs (35 lines):

diff -r d39359240918 -r 65a8133aea3a archivers/libarchive/distinfo
--- a/archivers/libarchive/distinfo     Mon Oct 31 14:31:47 2005 +0000
+++ b/archivers/libarchive/distinfo     Mon Oct 31 14:36:08 2005 +0000
@@ -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 -r d39359240918 -r 65a8133aea3a archivers/libarchive/patches/patch-aa
--- a/archivers/libarchive/patches/patch-aa     Mon Oct 31 14:31:47 2005 +0000
+++ b/archivers/libarchive/patches/patch-aa     Mon Oct 31 14:36:08 2005 +0000
@@ -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



Home | Main Index | Thread Index | Old Index