diff options
author | hubertf <hubertf@pkgsrc.org> | 2000-09-26 03:08:29 +0000 |
---|---|---|
committer | hubertf <hubertf@pkgsrc.org> | 2000-09-26 03:08:29 +0000 |
commit | 9637936b19b4af82e7264c8d3fdddb83b6342969 (patch) | |
tree | 7b84925a81654a67c2f54ad83242fed6d3ee6561 /audio | |
parent | 2ea620655cfa730b84eb103c92c973f1f59d4dbf (diff) | |
download | pkgsrc-9637936b19b4af82e7264c8d3fdddb83b6342969.tar.gz |
Make this compile on alpha: pull in <string.h> for correct prototype of
memcpy()
Diffstat (limited to 'audio')
-rw-r--r-- | audio/ac3dec/files/patch-sum | 3 | ||||
-rw-r--r-- | audio/ac3dec/patches/patch-ac | 12 |
2 files changed, 14 insertions, 1 deletions
diff --git a/audio/ac3dec/files/patch-sum b/audio/ac3dec/files/patch-sum index 065bcaff3e3..3e7938391f6 100644 --- a/audio/ac3dec/files/patch-sum +++ b/audio/ac3dec/files/patch-sum @@ -1,4 +1,5 @@ -$NetBSD: patch-sum,v 1.4 2000/06/08 10:51:30 wiz Exp $ +$NetBSD: patch-sum,v 1.5 2000/09/26 03:08:29 hubertf Exp $ MD5 (patch-aa) = f472e1fe1da3dbb6f8b1d293ef0eb42c MD5 (patch-ab) = 8c475b6221cd65061b798e2e7ab58ca1 +MD5 (patch-ac) = 63a575c0609f7f3e80c240e6c1ed8b81 diff --git a/audio/ac3dec/patches/patch-ac b/audio/ac3dec/patches/patch-ac new file mode 100644 index 00000000000..5ccfafa5689 --- /dev/null +++ b/audio/ac3dec/patches/patch-ac @@ -0,0 +1,12 @@ +$NetBSD: patch-ac,v 1.1 2000/09/26 03:08:32 hubertf Exp $ + +--- libac3/bitstream.c.orig Mon Sep 25 23:05:02 2000 ++++ libac3/bitstream.c +@@ -23,6 +23,7 @@ + + #include <stdlib.h> + #include <stdio.h> ++#include <string.h> + + #include "ac3.h" + #include "ac3_internal.h" |