diff options
author | Tony Vroon <chainsaw@gentoo.org> | 2009-06-17 12:07:28 +0000 |
---|---|---|
committer | Tony Vroon <chainsaw@gentoo.org> | 2009-06-17 12:07:28 +0000 |
commit | f38970d2a656aabdafc88e1c3f7b54fc0d972016 (patch) | |
tree | 237f5e3b6d5ad7b524ff52d299e0c8d93260a701 /media-plugins/audacious-plugins/files | |
parent | Mark stable on AMD64. Tested on a Core2 Duo with Realtek ALC226 @ ICH9M HD-Au... (diff) | |
download | historical-f38970d2a656aabdafc88e1c3f7b54fc0d972016.tar.gz historical-f38970d2a656aabdafc88e1c3f7b54fc0d972016.tar.bz2 historical-f38970d2a656aabdafc88e1c3f7b54fc0d972016.zip |
Upstream patch from Matti Hamalainen <ccr@tnsp.org> allows unusual USE-flag combination of icecast without vorbis, closes bug #274309 by Diego E. 'Flameeyes' Pettenò <flameeyes@gentoo.org>. No revision bump, just a build fix. Marking stable on AMD64 as there have been no significant bugs reported for this package. Tested on a Core2 Duo with Realtek ALC226 @ ICH9M HD-Audio.
Package-Manager: portage-2.1.6.13/cvs/Linux x86_64
Diffstat (limited to 'media-plugins/audacious-plugins/files')
-rw-r--r-- | media-plugins/audacious-plugins/files/2.0.1-icecast-flawed-vorbis-enum.patch | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/media-plugins/audacious-plugins/files/2.0.1-icecast-flawed-vorbis-enum.patch b/media-plugins/audacious-plugins/files/2.0.1-icecast-flawed-vorbis-enum.patch new file mode 100644 index 000000000000..925ca623e00b --- /dev/null +++ b/media-plugins/audacious-plugins/files/2.0.1-icecast-flawed-vorbis-enum.patch @@ -0,0 +1,21 @@ + +# HG changeset patch +# User Matti Hamalainen <ccr@tnsp.org> +# Date 1245161877 -10800 +# Node ID c41b5966778fce4eb9b15e0c5ee262c7ff1758fb +# Parent 54c7d2087c8af9e01430a907675cb066f0b30b61 +Default to '0' instead of enum value VORBIS, which may not be defined if +Vorbis support is not compiled in. + +--- a/src/icecast/icecast.c Tue Jun 16 08:15:49 2009 -0500 ++++ b/src/icecast/icecast.c Tue Jun 16 17:17:57 2009 +0300 +@@ -52,7 +52,7 @@ + streamformat_MAX + }; + +-static gint streamformat = VORBIS; ++static gint streamformat = 0; + + static unsigned int streamformat_shout[] = + { + |