diff options
author | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2020-01-11 01:55:06 +0000 |
---|---|---|
committer | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2020-01-11 01:55:06 +0000 |
commit | c20cf424f2d1b43aa8abeee6b77c5ee2ef51162c (patch) | |
tree | 43318afe5b29a6ba28961178e53cac70174d7093 /user/mdadm/sysmacros.patch | |
parent | 21c4b84eb30afc752dd0ba5965c61dfc3bebac3d (diff) | |
download | packages-c20cf424f2d1b43aa8abeee6b77c5ee2ef51162c.tar.gz packages-c20cf424f2d1b43aa8abeee6b77c5ee2ef51162c.tar.bz2 packages-c20cf424f2d1b43aa8abeee6b77c5ee2ef51162c.tar.xz packages-c20cf424f2d1b43aa8abeee6b77c5ee2ef51162c.zip |
user/mdadm: Fix build on new musl
Diffstat (limited to 'user/mdadm/sysmacros.patch')
-rw-r--r-- | user/mdadm/sysmacros.patch | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/user/mdadm/sysmacros.patch b/user/mdadm/sysmacros.patch new file mode 100644 index 000000000..22a393447 --- /dev/null +++ b/user/mdadm/sysmacros.patch @@ -0,0 +1,31 @@ +https://bugs.gentoo.org/580188 + +From 5c97e465b33bf8fefb17da7f553a1c3812e508d5 Mon Sep 17 00:00:00 2001 +From: Mike Frysinger <vapier@gentoo.org> +Date: Tue, 19 Apr 2016 18:10:54 -0400 +Subject: [PATCH] include sys/sysmacros.h for major/minor/makedev prototypes + +These funcs are defined in sys/sysmacros.h, so include it for them. +It works today due to an implicit include by sys/types.h, but the +various Linux C libraries are moving away from that. + +Signed-off-by: Mike Frysinger <vapier@gentoo.org> +--- + mdadm.h | 1 + + 1 file changed, 1 insertion(+) + +diff --git a/mdadm.h b/mdadm.h +index d209488..b8767a7 100755 +--- a/mdadm.h ++++ b/mdadm.h +@@ -33,6 +33,7 @@ extern __off64_t lseek64 __P ((int __fd, __off64_t __offset, int __whence)); + # endif + #endif + ++#include <sys/sysmacros.h> + #include <sys/types.h> + #include <sys/stat.h> + #include <stdint.h> +-- +2.7.4 + |