From b06ac35c7979d965d977990e7626d9827dda2b45 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 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 -- 2.7.4