diff options
author | Mike Frysinger <vapier@gentoo.org> | 2016-04-21 00:21:58 -0400 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2016-04-21 00:21:58 -0400 |
commit | 8bea3f73fa42fa9025d4aeb8950611af99984563 (patch) | |
tree | fd449b3ea3372ca520f8b85bdd379e9cf5b9bcd9 /app-benchmarks/bootchart2 | |
parent | dev-util/umockdev: fix build w/newer glibc #579988 (diff) | |
download | gentoo-8bea3f73fa42fa9025d4aeb8950611af99984563.tar.gz gentoo-8bea3f73fa42fa9025d4aeb8950611af99984563.tar.bz2 gentoo-8bea3f73fa42fa9025d4aeb8950611af99984563.zip |
app-benchmarks/bootchart2: fix build w/newer glibc #579922
Diffstat (limited to 'app-benchmarks/bootchart2')
-rw-r--r-- | app-benchmarks/bootchart2/bootchart2-0.14.7-r1.ebuild | 1 | ||||
-rw-r--r-- | app-benchmarks/bootchart2/files/bootchart2-0.14.7-sysmacros.patch | 29 |
2 files changed, 30 insertions, 0 deletions
diff --git a/app-benchmarks/bootchart2/bootchart2-0.14.7-r1.ebuild b/app-benchmarks/bootchart2/bootchart2-0.14.7-r1.ebuild index 4e466bd85420..b652fe02fb7d 100644 --- a/app-benchmarks/bootchart2/bootchart2-0.14.7-r1.ebuild +++ b/app-benchmarks/bootchart2/bootchart2-0.14.7-r1.ebuild @@ -36,6 +36,7 @@ S="${WORKDIR}"/${PN%2}-${PV} CONFIG_CHECK="~PROC_EVENTS ~TASKSTATS ~TASK_DELAY_ACCT ~TMPFS" src_prepare() { + epatch "${FILESDIR}"/${P}-sysmacros.patch #579922 tc-export CC sed \ -e "/^install/s:py-install-compile::g" \ diff --git a/app-benchmarks/bootchart2/files/bootchart2-0.14.7-sysmacros.patch b/app-benchmarks/bootchart2/files/bootchart2-0.14.7-sysmacros.patch new file mode 100644 index 000000000000..de6e4112b685 --- /dev/null +++ b/app-benchmarks/bootchart2/files/bootchart2-0.14.7-sysmacros.patch @@ -0,0 +1,29 @@ +https://bugs.gentoo.org/579922 + +From add58c3b57064afd6f7d2fd5f09006d28a3e770e Mon Sep 17 00:00:00 2001 +From: Mike Frysinger <vapier@gentoo.org> +Date: Thu, 21 Apr 2016 00:19:32 -0400 +Subject: [PATCH] include sys/sysmacros.h for major/minor/makedev + +These funcs are defined in the sys/sysmacros.h header, not sys/types.h. +Linux C libraries are updating to drop the implicit include, so we need +to include it explicitly. +--- + collector/collector.c | 1 + + 1 file changed, 1 insertion(+) + +diff --git a/collector/collector.c b/collector/collector.c +index cfdcb26..2f3ce6b 100644 +--- a/collector/collector.c ++++ b/collector/collector.c +@@ -33,6 +33,7 @@ + #include "common.h" + + #include <sys/mount.h> ++#include <sys/sysmacros.h> + #include <linux/fs.h> + #include <linux/genetlink.h> + #include <linux/taskstats.h> +-- +2.7.4 + |