summaryrefslogtreecommitdiffstats
path: root/patches/systemd-234/0004-missing-define-O_PATH-and-AT_EMPTY_PATH.patch
diff options
context:
space:
mode:
Diffstat (limited to 'patches/systemd-234/0004-missing-define-O_PATH-and-AT_EMPTY_PATH.patch')
-rw-r--r--patches/systemd-234/0004-missing-define-O_PATH-and-AT_EMPTY_PATH.patch44
1 files changed, 0 insertions, 44 deletions
diff --git a/patches/systemd-234/0004-missing-define-O_PATH-and-AT_EMPTY_PATH.patch b/patches/systemd-234/0004-missing-define-O_PATH-and-AT_EMPTY_PATH.patch
deleted file mode 100644
index 5085c8790..000000000
--- a/patches/systemd-234/0004-missing-define-O_PATH-and-AT_EMPTY_PATH.patch
+++ /dev/null
@@ -1,44 +0,0 @@
-From: Michael Olbrich <m.olbrich@pengutronix.de>
-Date: Tue, 2 Jun 2015 10:46:05 +0200
-Subject: [PATCH] missing: define O_PATH and AT_EMPTY_PATH
-
-This is required for glibc <= 2.15
-
-Upstream requires glibc 2.16 but this is useful for host-systemd.
-
-Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
----
- src/basic/missing.h | 7 +++++++
- src/basic/xattr-util.c | 1 +
- 2 files changed, 8 insertions(+)
-
-diff --git a/src/basic/missing.h b/src/basic/missing.h
-index 16c1a140ee65..8671c56140a6 100644
---- a/src/basic/missing.h
-+++ b/src/basic/missing.h
-@@ -958,6 +958,13 @@ struct input_mask {
- #define CLOCK_BOOTTIME_ALARM 9
- #endif
-
-+#ifndef O_PATH
-+#define O_PATH 010000000
-+#endif
-+#ifndef AT_EMPTY_PATH
-+#define AT_EMPTY_PATH 0x1000 /* Allow empty relative pathname */
-+#endif
-+
- #ifndef IPV6_UNICAST_IF
- #define IPV6_UNICAST_IF 76
- #endif
-diff --git a/src/basic/xattr-util.c b/src/basic/xattr-util.c
-index 8256899edae3..dc64a9aeb4c8 100644
---- a/src/basic/xattr-util.c
-+++ b/src/basic/xattr-util.c
-@@ -25,6 +25,7 @@
- #include <sys/time.h>
- #include <sys/xattr.h>
-
-+#include "missing.h"
- #include "alloc-util.h"
- #include "fd-util.h"
- #include "macro.h"