diff options
author | joerg <joerg> | 2005-11-11 17:48:25 +0000 |
---|---|---|
committer | joerg <joerg> | 2005-11-11 17:48:25 +0000 |
commit | 776e02095ab6e2c143831870051e267f88916eb5 (patch) | |
tree | 75464c4e5cb0e93e230289978b87ae6ad1b2866a /audio | |
parent | fcfcb5ea78df5e81f3645e47193a873037a1ec50 (diff) | |
download | pkgsrc-776e02095ab6e2c143831870051e267f88916eb5.tar.gz |
Add DragonFly support. Fix lvalue cast to allow build with GCC 3.4+.
Diffstat (limited to 'audio')
-rw-r--r-- | audio/libac3/distinfo | 6 | ||||
-rw-r--r-- | audio/libac3/patches/patch-aa | 25 | ||||
-rw-r--r-- | audio/libac3/patches/patch-ab | 14 |
3 files changed, 30 insertions, 15 deletions
diff --git a/audio/libac3/distinfo b/audio/libac3/distinfo index a44c2806445..31a55cb8c9f 100644 --- a/audio/libac3/distinfo +++ b/audio/libac3/distinfo @@ -1,7 +1,7 @@ -$NetBSD: distinfo,v 1.3 2005/02/23 20:39:47 agc Exp $ +$NetBSD: distinfo,v 1.4 2005/11/11 17:48:25 joerg Exp $ SHA1 (ac3dec-0.6.1.tar.gz) = 5c3315a58425be508bfbf076054e636451b685fd RMD160 (ac3dec-0.6.1.tar.gz) = 1c61ab0f203a86bdf885d7a1dcfb43a224c84400 Size (ac3dec-0.6.1.tar.gz) = 84978 bytes -SHA1 (patch-aa) = 57c06d31e672a69d72cbb02f4998aa5ed9d58c28 -SHA1 (patch-ab) = 2f0997ad1e9135d213c3f882b55be59e86b05325 +SHA1 (patch-aa) = 957a19c7437205dfb901d22734d19e564f4375b9 +SHA1 (patch-ab) = f436a56f91d3aa67e0e3a4b8df1d3745e92da14f diff --git a/audio/libac3/patches/patch-aa b/audio/libac3/patches/patch-aa index 59a27b68739..157e3d7db90 100644 --- a/audio/libac3/patches/patch-aa +++ b/audio/libac3/patches/patch-aa @@ -1,17 +1,18 @@ -$NetBSD: patch-aa,v 1.1.1.1 2000/10/15 17:49:47 rh Exp $ +$NetBSD: patch-aa,v 1.2 2005/11/11 17:48:25 joerg Exp $ ---- configure.orig Wed Mar 29 19:51:49 2000 -+++ configure Tue May 9 09:32:16 2000 -@@ -1255,27 +1255,7 @@ +--- configure.orig 2000-03-30 00:51:49.000000000 +0000 ++++ configure +@@ -1254,32 +1254,12 @@ fi + case "$host" in *-linux*) rm -f output.c; ln -s output_linux.c output.c;; -*-openbsd*|*-freebsd*) rm -f output.c; ln -s output_linux.c output.c;; -+*-openbsd*|*-freebsd*|*-netbsd*) rm -f output.c; ln -s output_linux.c output.c;; ++*-openbsd*|*-freebsd*|*-netbsd*|*-dragonfly*) rm -f output.c; ln -s output_linux.c output.c;; *-irix*) rm -f output.c; ln -s output_irix.c output.c;; *-solaris*) rm -f output.c; ln -s output_solaris.c output.c;; --*) echo "$host is not currently supported by ac3dec"; exit 1;; --esac -- + *) echo "$host is not currently supported by ac3dec"; exit 1;; + esac + -case "$host" in -i?86-*) cat >> confdefs.h <<\EOF -#define __i386__ 1 @@ -29,5 +30,9 @@ $NetBSD: patch-aa,v 1.1.1.1 2000/10/15 17:49:47 rh Exp $ -#define __ppc__ 1 -EOF -;; - *) echo "$host is not currently supported by ac3dec"; exit 1;; - esac +-*) echo "$host is not currently supported by ac3dec"; exit 1;; +-esac +- + trap '' 1 2 15 + cat > confcache <<\EOF + # This file is a shell script that caches the results of configure diff --git a/audio/libac3/patches/patch-ab b/audio/libac3/patches/patch-ab index f9ca7f01218..6de7c493b9d 100644 --- a/audio/libac3/patches/patch-ab +++ b/audio/libac3/patches/patch-ab @@ -1,6 +1,6 @@ -$NetBSD: patch-ab,v 1.1.1.1 2000/10/15 17:49:47 rh Exp $ +$NetBSD: patch-ab,v 1.2 2005/11/11 17:48:25 joerg Exp $ ---- libac3/bitstream.c.orig Mon Sep 25 23:05:02 2000 +--- libac3/bitstream.c.orig 2000-03-30 00:51:24.000000000 +0000 +++ libac3/bitstream.c @@ -23,6 +23,7 @@ @@ -10,3 +10,13 @@ $NetBSD: patch-ab,v 1.1.1.1 2000/10/15 17:49:47 rh Exp $ #include "ac3.h" #include "ac3_internal.h" +@@ -90,7 +91,8 @@ bitstream_buffer_frame(uint_32 frame_siz + static inline void + bitstream_fill_current() + { +- current_word = *((uint_32*)buffer_start)++; ++ current_word = *(uint_32*)buffer_start; ++ buffer_start += sizeof(uint_32); + current_word = swab32(current_word); + } + |