mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-08-05 12:38:09 -07:00
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:
13
app-i18n/zinnia/files/zinnia-0.06-gcc6.patch
Normal file
13
app-i18n/zinnia/files/zinnia-0.06-gcc6.patch
Normal 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;
|
||||
}
|
||||
|
||||
@@ -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
|
||||
|
||||
|
||||
Reference in New Issue
Block a user