summaryrefslogtreecommitdiff
path: root/sys-apps/readahead-list/files
diff options
context:
space:
mode:
authorPacho Ramos <pacho@gentoo.org>2017-04-04 13:57:04 +0200
committerPacho Ramos <pacho@gentoo.org>2017-04-04 14:05:09 +0200
commit0a0e6a5e0b7ed4069266f2fcee32e74b7f08b584 (patch)
treeb74ab17d368a6bc4225afdf557301d51d8f95440 /sys-apps/readahead-list/files
parent6bdcdc31ed91e397ad8d8cca4ffac2b4b4619e3a (diff)
downloadgentoo-0a0e6a5e0b7ed4069266f2fcee32e74b7f08b584.tar.gz
gentoo-0a0e6a5e0b7ed4069266f2fcee32e74b7f08b584.tar.xz
sys-apps/readahead-list: Fix gcc6 support, bug #594092 by Peter Levine, also stop using base.eclass
Package-Manager: Portage-2.3.5, Repoman-2.3.2
Diffstat (limited to 'sys-apps/readahead-list/files')
-rw-r--r--sys-apps/readahead-list/files/readahead-list-1.20060421.1016-gcc-4.3.patch4
-rw-r--r--sys-apps/readahead-list/files/readahead-list-1.20060421.1016-gcc6.patch15
2 files changed, 17 insertions, 2 deletions
diff --git a/sys-apps/readahead-list/files/readahead-list-1.20060421.1016-gcc-4.3.patch b/sys-apps/readahead-list/files/readahead-list-1.20060421.1016-gcc-4.3.patch
index 6264bbad952..ccee025dcbf 100644
--- a/sys-apps/readahead-list/files/readahead-list-1.20060421.1016-gcc-4.3.patch
+++ b/sys-apps/readahead-list/files/readahead-list-1.20060421.1016-gcc-4.3.patch
@@ -1,5 +1,5 @@
---- src/filelist-order.cxx
-+++ src/filelist-order.cxx
+--- a/src/filelist-order.cxx
++++ b/src/filelist-order.cxx
@@ -19,6 +19,7 @@
#include <iostream>
#include <fstream>
diff --git a/sys-apps/readahead-list/files/readahead-list-1.20060421.1016-gcc6.patch b/sys-apps/readahead-list/files/readahead-list-1.20060421.1016-gcc6.patch
new file mode 100644
index 00000000000..a987e4aa767
--- /dev/null
+++ b/sys-apps/readahead-list/files/readahead-list-1.20060421.1016-gcc6.patch
@@ -0,0 +1,15 @@
+filelist-order.cxx:276:37: error: unable to find string literal operator ‘operator""fmt’ with ‘const char [3]’, ‘long unsigned int’ arguments
+
+https://bugs.gentoo.org/594092
+
+--- a/src/filelist-order.cxx
++++ b/src/filelist-order.cxx
+@@ -273,7 +273,7 @@ void printItem(PAIR_COMPLETE_TYPE p,vector <OrderField*> *ofa) {
+ continue;
+ }
+ OrderField of = *ofp;
+-#define case_entry(fmt,func) printf("%s"fmt,(first ? "" : " "),func_##func(mk)); break;
++#define case_entry(fmt,func) printf("%s" fmt,(first ? "" : " "),func_##func(mk)); break;
+ switch(of.type) {
+ case ST_DEV: case_entry("%lld",ST_DEV);
+ case ST_INO: case_entry("%lld",ST_INO);