diff options
author | tv <tv@pkgsrc.org> | 2005-10-31 14:31:47 +0000 |
---|---|---|
committer | tv <tv@pkgsrc.org> | 2005-10-31 14:31:47 +0000 |
commit | cd4c1493af7bed2af36400eb9923e570211249c8 (patch) | |
tree | 52bfe3f6ce336df8c1f5d982a40bc97c67bd6e7c /archivers/archangel | |
parent | ddc2dc567efbe218d379188531da6755cd58ad02 (diff) | |
download | pkgsrc-cd4c1493af7bed2af36400eb9923e570211249c8.tar.gz |
Fix build on Interix (u_int64_t, but no uint64_t).
Diffstat (limited to 'archivers/archangel')
-rw-r--r-- | archivers/archangel/distinfo | 3 | ||||
-rw-r--r-- | archivers/archangel/patches/patch-ae | 15 |
2 files changed, 17 insertions, 1 deletions
diff --git a/archivers/archangel/distinfo b/archivers/archangel/distinfo index 9b8ac317136..c1818e5999b 100644 --- a/archivers/archangel/distinfo +++ b/archivers/archangel/distinfo @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.6 2005/10/31 05:11:41 minskim Exp $ +$NetBSD: distinfo,v 1.7 2005/10/31 14:31:47 tv Exp $ SHA1 (archangel-20050730.tar.gz) = 966948ebac01a71732e93afd72fe5c4a21ba1ed8 RMD160 (archangel-20050730.tar.gz) = 16b5f1d7dae8d45b22d0e371a90e0673c5e58caa @@ -7,3 +7,4 @@ SHA1 (patch-aa) = cc5369ee02b35a0f4c21bed18802a3919f89bc63 SHA1 (patch-ab) = 580fac24f5c2ee698ea58dce3b75bc4301db75bf SHA1 (patch-ac) = f7cd2a68ae6349e9ce2570ee269c70d7dd565c8f SHA1 (patch-ad) = 8cfb116a12ec927f00d2059d5e9b59e1e2d564c3 +SHA1 (patch-ae) = 21e2e651af0d828813b26cd036b7583a5dd3eebe diff --git a/archivers/archangel/patches/patch-ae b/archivers/archangel/patches/patch-ae new file mode 100644 index 00000000000..b2d4afb5101 --- /dev/null +++ b/archivers/archangel/patches/patch-ae @@ -0,0 +1,15 @@ +$NetBSD: patch-ae,v 1.1 2005/10/31 14:31:47 tv Exp $ + +--- aa.h.orig 2005-07-23 04:23:16.000000000 -0400 ++++ aa.h +@@ -30,6 +30,10 @@ + #ifndef AA_H_ + #define AA_H_ + ++#if !HAVE_UINT64_T && HAVE_U_INT64_T ++#define uint64_t u_int64_t ++#endif ++ + #define KB(x) ((x) * 1024) + #define MB(x) ((x) * 1024 * 1024) + |