forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
app-benchmarks/bootchart2: fix build w/newer glibc #579922
- Loading branch information
Showing
2 changed files
with
30 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
29 changes: 29 additions & 0 deletions
29
app-benchmarks/bootchart2/files/bootchart2-0.14.7-sysmacros.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
https://bugs.gentoo.org/579922 | ||
|
||
From add58c3b57064afd6f7d2fd5f09006d28a3e770e Mon Sep 17 00:00:00 2001 | ||
From: Mike Frysinger <[email protected]> | ||
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 | ||
|