aboutsummaryrefslogtreecommitdiffstats
path: root/main/openrc/0008-fix-undeclared-UT_LINESIZE.patch
diff options
context:
space:
mode:
Diffstat (limited to 'main/openrc/0008-fix-undeclared-UT_LINESIZE.patch')
-rw-r--r--main/openrc/0008-fix-undeclared-UT_LINESIZE.patch28
1 files changed, 0 insertions, 28 deletions
diff --git a/main/openrc/0008-fix-undeclared-UT_LINESIZE.patch b/main/openrc/0008-fix-undeclared-UT_LINESIZE.patch
deleted file mode 100644
index a61f0c6c7fe..00000000000
--- a/main/openrc/0008-fix-undeclared-UT_LINESIZE.patch
+++ /dev/null
@@ -1,28 +0,0 @@
-From e7a8d2d5f988d6a9688b7359f62209b6ed296c64 Mon Sep 17 00:00:00 2001
-From: Jakub Jirutka <jakub@jirutka.cz>
-Date: Mon, 12 Nov 2018 18:41:32 +0100
-Subject: [PATCH] Fix undeclared UT_LINESIZE
-
-Fix the following error:
-
- broadcast.c:41:21: error: '__UT_LINESIZE' undeclared (first use in this function); did you mean 'UT_LINESIZE'?
- #define UT_LINESIZE __UT_LINESIZE
- ^~~~~~~~~~
-
-Constant UT_LINESIZE is defined in <utmp.h> provided by musl.
----
- src/rc/broadcast.c | 1 +
- 1 file changed, 1 insertion(+)
-
-diff --git a/src/rc/broadcast.c b/src/rc/broadcast.c
-index 47c093ce..4877fb74 100644
---- a/src/rc/broadcast.c
-+++ b/src/rc/broadcast.c
-@@ -22,6 +22,7 @@
- #include <time.h>
- #include <unistd.h>
- #include <stdio.h>
-+#include <utmp.h>
- #include <utmpx.h>
- #include <pwd.h>
- #include <fcntl.h>