From 0e464d5b334e691a7502b1ca4305c4d85e5b6acb Mon Sep 17 00:00:00 2001 From: Alexander Sverdlin Date: Wed, 8 Apr 2015 12:59:40 +0200 Subject: [PATCH] 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. --- src/shared/missing.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/shared/missing.h b/src/shared/missing.h index fa532845c..4c1c7d98a 100644 --- a/src/shared/missing.h +++ b/src/shared/missing.h @@ -859,6 +859,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 -- 2.30.2