media-sound/splay: Allow for compiling with GCC 6
authorDavid Seifert <soap@gentoo.org>
Sun, 2 Oct 2016 16:07:21 +0000 (18:07 +0200)
committerDavid Seifert <soap@gentoo.org>
Sun, 2 Oct 2016 16:45:47 +0000 (18:45 +0200)
Gentoo-bug: 594684

Package-Manager: portage-2.3.1

media-sound/splay/files/splay-0.9.5.2-fix-c++14.patch [new file with mode: 0644]
media-sound/splay/splay-0.9.5.2-r2.ebuild

diff --git a/media-sound/splay/files/splay-0.9.5.2-fix-c++14.patch b/media-sound/splay/files/splay-0.9.5.2-fix-c++14.patch
new file mode 100644 (file)
index 0000000..328463a
--- /dev/null
@@ -0,0 +1,28 @@
+Fix building with C++14, which errors out due to narrowing conversions.
+See also: https://bugs.gentoo.org/show_bug.cgi?id=594684
+
+--- a/libs/huffmantable.cc
++++ b/libs/huffmantable.cc
+@@ -550,11 +550,11 @@
+ const HUFFMANCODETABLE Mpegtoraw::ht[HTN]=
+ {
+-  { 0, 0-1, 0-1, 0,  0, htd33},
++  { 0, (unsigned int)(0-1), (unsigned int)(0-1), 0,  0, htd33},
+   { 1, 2-1, 2-1, 0,  7,htd01},
+   { 2, 3-1, 3-1, 0, 17,htd02},
+   { 3, 3-1, 3-1, 0, 17,htd03},
+-  { 4, 0-1, 0-1, 0,  0, htd33},
++  { 4, (unsigned int)(0-1), (unsigned int)(0-1), 0,  0, htd33},
+   { 5, 4-1, 4-1, 0, 31,htd05},
+   { 6, 4-1, 4-1, 0, 31,htd06},
+   { 7, 6-1, 6-1, 0, 71,htd07},
+@@ -564,7 +564,7 @@
+   {11, 8-1, 8-1, 0,127,htd11},
+   {12, 8-1, 8-1, 0,127,htd12},
+   {13,16-1,16-1, 0,511,htd13},
+-  {14, 0-1, 0-1, 0,  0, htd33},
++  {14, (unsigned int)(0-1), (unsigned int)(0-1), 0,  0, htd33},
+   {15,16-1,16-1, 0,511,htd15},
+   {16,16-1,16-1, 1,511,htd16},
+   {17,16-1,16-1, 2,511,htd16},
index 67d31aeeacb9c2d9d864f5c107eabbfbbe74373a..f8390eb2fb0d9b2af7e5243202e902cadc0495c9 100644 (file)
@@ -22,6 +22,7 @@ PATCHES=(
        "${FILESDIR}/${P}-external-id3lib.diff"
        "${FILESDIR}/${P}-gcc43-2.patch"
        "${FILESDIR}/${P}-fix-buildsystem.patch"
+       "${FILESDIR}/${P}-fix-c++14.patch"
 )
 
 src_prepare() {