diff options
author | Andrew Jeddeloh <andrewjeddeloh@gmail.com> | 2016-06-14 02:09:06 -0700 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2016-06-14 11:09:06 +0200 |
commit | f4f5e50a0ab828991ff54e7013acc6917a9510fa (patch) | |
tree | ef3edb64aed6aab084b7bf126298a452d0b72c50 /src/basic/missing.h | |
parent | 1be3f471e7b2c379b90207e02d95a3684329d5aa (diff) |
build: fix missing symbol for old kernel headers (#3530)
Fix issue where IN6_ADDR_GEN_MODE_STABLE_PRIVACY is undefined but
IFLA_INET6_ADDR_GEN_MODE is defined and thus the former does not get
fixed in missing.h. This occurs with kernel headers new enough to have
the IFLA_INET6_ADDR_GEN_MODE but old enough to not yet have
IN6_ADDR_GEN_MODE_STABLE_PRIVACY (e.g. 3.18).
Diffstat (limited to 'src/basic/missing.h')
-rw-r--r-- | src/basic/missing.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/basic/missing.h b/src/basic/missing.h index 8b977871e9..53dfa1c801 100644 --- a/src/basic/missing.h +++ b/src/basic/missing.h @@ -577,6 +577,9 @@ struct btrfs_ioctl_quota_ctl_args { #define IN6_ADDR_GEN_MODE_EUI64 0 #define IN6_ADDR_GEN_MODE_NONE 1 +#endif + +#if !HAVE_DECL_IN6_ADDR_GEN_MODE_STABLE_PRIVACY #define IN6_ADDR_GEN_MODE_STABLE_PRIVACY 2 #endif |