diff options
author | sbd <sbd@pkgsrc.org> | 2012-06-27 22:23:41 +0000 |
---|---|---|
committer | sbd <sbd@pkgsrc.org> | 2012-06-27 22:23:41 +0000 |
commit | f574c3bf754268c6c0720f98586b51c29111edc0 (patch) | |
tree | 9f3656ddf7e6b31d920646bae442869319671d89 /audio | |
parent | 180e562bca76239bf1f3aec753041975668bf7cb (diff) | |
download | pkgsrc-f574c3bf754268c6c0720f98586b51c29111edc0.tar.gz |
stdint.h must be included for uintX_t types.
Diffstat (limited to 'audio')
-rw-r--r-- | audio/gramofile/distinfo | 4 | ||||
-rw-r--r-- | audio/gramofile/patches/patch-ac | 20 |
2 files changed, 15 insertions, 9 deletions
diff --git a/audio/gramofile/distinfo b/audio/gramofile/distinfo index 92ced4fbdd8..37415cbce83 100644 --- a/audio/gramofile/distinfo +++ b/audio/gramofile/distinfo @@ -1,10 +1,10 @@ -$NetBSD: distinfo,v 1.10 2012/02/15 21:37:48 hans Exp $ +$NetBSD: distinfo,v 1.11 2012/06/27 22:23:41 sbd Exp $ SHA1 (gramofile-1.6.tar.gz) = 6e5365d9e04801725be694fefcff5fc10ea2f912 RMD160 (gramofile-1.6.tar.gz) = 3f7c8a8e8053e92ece830bbb1138fc7ed1c49967 Size (gramofile-1.6.tar.gz) = 108596 bytes SHA1 (patch-aa) = d9cfec7b0243efeb9785b65dbb5c95725d646bdb SHA1 (patch-ab) = 1f599c0dc94dd6d420c7ba59e75a9829180dc4df -SHA1 (patch-ac) = 86e4431b5cd3e98a19e63f070fb1e374b1fdd4ca +SHA1 (patch-ac) = 9454f027a896d4778977cb126e0b1e82050de7fb SHA1 (patch-bplaysrc_bplay_c) = 59f0db9a664245c2d21e791c2910854f5c9ecdce SHA1 (patch-gramofile_c) = 8c73c1db912894bc6f7cfc3fa191f1521e5d5b8d diff --git a/audio/gramofile/patches/patch-ac b/audio/gramofile/patches/patch-ac index 3ff605c1dd8..975762c1751 100644 --- a/audio/gramofile/patches/patch-ac +++ b/audio/gramofile/patches/patch-ac @@ -1,10 +1,16 @@ -$NetBSD: patch-ac,v 1.4 2012/02/15 21:37:48 hans Exp $ +$NetBSD: patch-ac,v 1.5 2012/06/27 22:23:42 sbd Exp $ Use fixed size fields ---- fmtheaders.h.orig 2000-03-28 22:07:26.000000000 +0100 -+++ fmtheaders.h 2004-11-29 09:12:19.000000000 +0000 -@@ -7,16 +7,16 @@ +--- fmtheaders.h.orig 2000-03-28 21:07:26.000000000 +0000 ++++ fmtheaders.h +@@ -2,21 +2,22 @@ + #define _FMTHEADERS_H 1 + + #include <sys/types.h> ++#include <stdint.h> + + /* Definitions for .VOC files */ #define VOC_MAGIC "Creative Voice File\032" @@ -27,7 +33,7 @@ Use fixed size fields } vochead; -@@ -36,7 +36,7 @@ blockT1; +@@ -36,7 +37,7 @@ blockT1; typedef struct blockT8 { @@ -36,7 +42,7 @@ Use fixed size fields u_char PackMethod; u_char VoiceMode; } -@@ -44,10 +44,10 @@ blockT8; +@@ -44,10 +45,10 @@ blockT8; typedef struct blockT9 { @@ -49,7 +55,7 @@ Use fixed size fields u_char reserved[4]; } blockT9; -@@ -62,21 +62,21 @@ blockT9; +@@ -62,21 +63,21 @@ blockT9; */ typedef struct wavhead { |