diff options
author | Tobias Brunner <tobias@strongswan.org> | 2014-08-11 18:38:20 +0200 |
---|---|---|
committer | Tobias Brunner <tobias@strongswan.org> | 2014-08-11 18:40:18 +0200 |
commit | b04f40406d57cefe9d1be80a9bb49aa583e4876e (patch) | |
tree | 3e0aee03a57de68f0d98406475e98593ec0bd806 | |
parent | 508f90131a3277d94ef1a30f4524bd6c9b59d8cf (diff) | |
download | strongswan-b04f40406d57cefe9d1be80a9bb49aa583e4876e.tar.bz2 strongswan-b04f40406d57cefe9d1be80a9bb49aa583e4876e.tar.xz |
configure: Add additional includes when checking for linux/fib_rules.h
This seems to be required on Cent OS 6.5.
-rw-r--r-- | configure.ac | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index 695fa451f..b3a7366a4 100644 --- a/configure.ac +++ b/configure.ac @@ -575,9 +575,9 @@ AC_CHECK_FUNC([syslog], [ ]) AM_CONDITIONAL(USE_SYSLOG, [test "x$syslog" = xtrue]) -AC_CHECK_HEADERS(sys/sockio.h glob.h net/if_tun.h linux/fib_rules.h) +AC_CHECK_HEADERS(sys/sockio.h glob.h net/if_tun.h) AC_CHECK_HEADERS(net/pfkeyv2.h netipsec/ipsec.h netinet6/ipsec.h linux/udp.h) -AC_CHECK_HEADERS(netinet/ip6.h, [], [], +AC_CHECK_HEADERS([netinet/ip6.h linux/fib_rules.h], [], [], [ #include <sys/types.h> #include <netinet/in.h> |