blob: 2575b59b5ebaddfa7637392a3864506d4412675d [file] [log] [blame]
Brad Bishop1a4b7ee2018-12-16 17:11:34 -08001From 29c7a529d3bb0c1e20239f885e74c5036f1a908c Mon Sep 17 00:00:00 2001
2From: Khem Raj <raj.khem@gmail.com>
3Date: Mon, 6 Aug 2018 15:38:58 -0700
4Subject: [PATCH] include sys/sysmacros.h for major/minor defines in glibc
5
6Signed-off-by: Khem Raj <raj.khem@gmail.com>
7Upstream-Status: Pending
8---
9 src/bootlogd.c | 3 +++
10 src/bootlogd.o | Bin 58448 -> 60376 bytes
11 src/dowall.c | 3 +++
12 src/shutdown.c | 4 +++-
13 4 files changed, 9 insertions(+), 1 deletion(-)
14
15Index: sysvinit-2.88dsf/src/bootlogd.c
16===================================================================
17--- sysvinit-2.88dsf.orig/src/bootlogd.c
18+++ sysvinit-2.88dsf/src/bootlogd.c
19@@ -53,6 +53,9 @@
20 #ifdef __linux__
21 #include <sys/mount.h>
22 #endif
23+#ifdef __GLIBC__
24+#include <sys/sysmacros.h>
25+#endif
26
27 char *Version = "@(#) bootlogd 2.86 03-Jun-2004 miquels@cistron.nl";
28
29Index: sysvinit-2.88dsf/src/dowall.c
30===================================================================
31--- sysvinit-2.88dsf.orig/src/dowall.c
32+++ sysvinit-2.88dsf/src/dowall.c
33@@ -37,6 +37,9 @@
34 #include <signal.h>
35 #include <setjmp.h>
36 #include <paths.h>
37+#ifdef __GLIBC__
38+#include <sys/sysmacros.h>
39+#endif
40
41 #ifndef _PATH_DEV
42 # define _PATH_DEV "/dev/"
43Index: sysvinit-2.88dsf/src/shutdown.c
44===================================================================
45--- sysvinit-2.88dsf.orig/src/shutdown.c
46+++ sysvinit-2.88dsf/src/shutdown.c
47@@ -57,7 +57,9 @@
48 #include "reboot.h"
49 #include "initreq.h"
50 #include "init.h"
51-
52+#ifdef __GLIBC__
53+#include <sys/sysmacros.h>
54+#endif
55
56 char *Version = "@(#) shutdown 2.86-1 31-Jul-2004 miquels@cistron.nl";
57
58Index: sysvinit-2.88dsf/src/mountpoint.c
59===================================================================
60--- sysvinit-2.88dsf.orig/src/mountpoint.c
61+++ sysvinit-2.88dsf/src/mountpoint.c
62@@ -32,6 +32,9 @@
63 #include <stdarg.h>
64 #include <getopt.h>
65 #include <stdio.h>
66+#ifdef __GLIBC__
67+#include <sys/sysmacros.h>
68+#endif
69
70 int dostat(char *path, struct stat *st, int do_lstat, int quiet)
71 {