app-i18n/zinnia: Fix gcc6 support, bug #594048 by milan hodoscek and Peter Levine.

Package-Manager: Portage-2.3.5, Repoman-2.3.2
This commit is contained in:
Pacho Ramos
2017-04-04 13:39:43 +02:00
parent 4f76169df3
commit a26ff10dea
2 changed files with 15 additions and 1 deletions

View File

@@ -0,0 +1,13 @@
diff --git a/old/trainer.cpp b/zinnia-0.06/trainer.cpp
index fdb044c..8b21e6c 100644
--- a/old/trainer.cpp
+++ b/zinnia-0.06/trainer.cpp
@@ -103,7 +103,7 @@ class TrainerImpl: public Trainer {
if (!fn) {
return false;
}
- x_.push_back(std::make_pair<std::string, FeatureNode *>(y, fn));
+ x_.push_back(std::make_pair(y, fn));
return true;
}

View File

@@ -1,4 +1,4 @@
# Copyright 1999-2014 Gentoo Foundation
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=5
@@ -18,6 +18,7 @@ DOCS=( AUTHORS ChangeLog NEWS README )
PATCHES=(
"${FILESDIR}/${P}-ricedown.patch"
"${FILESDIR}/${P}-perl.patch"
"${FILESDIR}/${P}-gcc6.patch"
)
AUTOTOOLS_AUTORECONF=yes