[systemd-commits] 2 commits - TODO src/shared
Lennart Poettering
lennart at kemper.freedesktop.org
Wed Apr 8 04:03:03 PDT 2015
TODO | 2 +-
src/shared/missing.h | 4 ++++
2 files changed, 5 insertions(+), 1 deletion(-)
New commits:
commit 298a35ab54dba269fe94ac33f790792cf9f6a485
Author: Lennart Poettering <lennart at poettering.net>
Date: Wed Apr 8 13:02:45 2015 +0200
TODO: yeah, now it makes sense
diff --git a/TODO b/TODO
index 62b82c4..eea359e 100644
--- a/TODO
+++ b/TODO
@@ -43,7 +43,7 @@ Before 220:
Features:
-* logind should set EFI firmware flag via logind
+* systemctl should set EFI firmware flag via logind
* mounting and unmounting mount points manually with different source
devices will result in collected collected on all devices used.
commit b06ac35c7979d965d977990e7626d9827dda2b45
Author: Alexander Sverdlin <alexander.sverdlin at gmail.com>
Date: Wed Apr 8 12:59:40 2015 +0200
missing.h: Define IFA_F_NOPREFIXROUTE
Fixes second systemd compilation problem against Linux 3.12 uapi
headers.
IFA_F_NOPREFIXROUTE is a usual #define appeared in Linux 3.14, so
AC_CHECK_DECLS is not necessary.
diff --git a/src/shared/missing.h b/src/shared/missing.h
index ae84053..8ca6f8e 100644
--- a/src/shared/missing.h
+++ b/src/shared/missing.h
@@ -863,6 +863,10 @@ static inline int setns(int fd, int nstype) {
#define IFA_FLAGS 8
#endif
+#ifndef IFA_F_NOPREFIXROUTE
+#define IFA_F_NOPREFIXROUTE 0x200
+#endif
+
#ifndef MAX_AUDIT_MESSAGE_LENGTH
#define MAX_AUDIT_MESSAGE_LENGTH 8970
#endif
More information about the systemd-commits
mailing list