diff options
author | Jason A. Donenfeld <Jason@zx2c4.com> | 2017-09-18 17:37:03 +0200 |
---|---|---|
committer | Jason A. Donenfeld <Jason@zx2c4.com> | 2017-09-18 17:38:22 +0200 |
commit | 5ca30a5ad325cc3e252908adf121d31e30b8aa5f (patch) | |
tree | eb5f8e4880a64bb2f7df586f643bd5ffaf70ac2b | |
parent | 0d341761c44739f9c53128fd3e101f83fe60b969 (diff) |
compat: support RHEL 7.4
Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
-rw-r--r-- | src/compat/compat.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/compat/compat.h b/src/compat/compat.h index 451078f..28a7956 100644 --- a/src/compat/compat.h +++ b/src/compat/compat.h @@ -93,7 +93,7 @@ static const struct ipv6_stub_type *ipv6_stub = &ipv6_stub_impl; #endif -#if LINUX_VERSION_CODE < KERNEL_VERSION(4, 8, 0) && IS_ENABLED(CONFIG_IPV6) && !defined(ISOPENSUSE42) +#if LINUX_VERSION_CODE < KERNEL_VERSION(4, 8, 0) && IS_ENABLED(CONFIG_IPV6) && !defined(ISOPENSUSE42) && !defined(ISRHEL7) #include <net/addrconf.h> static inline bool ipv6_mod_enabled(void) { |