media-sound/hydrogen: Add build fix for gcc-6, bug 598124

Thanks to Carlos Salvador Pérez Salgado for the patch.

Closes: https://bugs.gentoo.org/598124
Package-Manager: Portage-2.3.10, Repoman-2.3.3
This commit is contained in:
Andreas K. Hüttel
2017-09-26 20:10:25 +02:00
parent e38656c8d9
commit 2753ebbdac
2 changed files with 15 additions and 2 deletions

View File

@@ -0,0 +1,12 @@
diff -ruN hydrogen-0.9.5.orig/libs/hydrogen/src/local_file_mgr.cpp hydrogen-0.9.5/libs/hydrogen/src/local_file_mgr.cpp
--- hydrogen-0.9.5.orig/libs/hydrogen/src/local_file_mgr.cpp 2011-01-29 00:33:23.000000000 +0100
+++ hydrogen-0.9.5/libs/hydrogen/src/local_file_mgr.cpp 2017-09-26 20:07:31.128723252 +0200
@@ -980,7 +980,7 @@
std::string playlistInfoFile = patternname;
std::ifstream verify( playlistInfoFile.c_str() , std::ios::in | std::ios::binary );
- if ( verify == NULL ) {
+ if ( !verify ) {
//ERRORLOG( "Load Playlist: Data file " + playlistInfoFile + " not found." );
return NULL;
}

View File

@@ -1,4 +1,4 @@
# Copyright 1999-2013 Gentoo Foundation
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=4
@@ -31,7 +31,8 @@ src_prepare() {
epatch \
patches/portaudio.patch \
"${FILESDIR}"/${P}-use_lrdf_pkgconfig.patch \
"${FILESDIR}"/${P}-gcc47.patch
"${FILESDIR}"/${P}-gcc47.patch \
"${FILESDIR}"/${P}-gcc6.patch
}
src_compile() {