From 975cfef6b1cd30568f2f82e14638a84f257d2f54 Mon Sep 17 00:00:00 2001 From: Amos Jeffries Date: Mon, 13 Apr 2009 02:01:26 +1200 Subject: [PATCH] Bug 2610: Detection and verification of ipfilter header files is incorrect After much contention reg Solaris and FreeBSD the union between them seems to be this: - adding netinet/in.h - adding netinet/ip_fil_compat.h (alternative to netinet/ip_compat.h) - testing for netinet/ipl.h before netinet/ip_nat.h --- configure.in | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/configure.in b/configure.in index 6e0daca2e9..1b6e7027c0 100644 --- a/configure.in +++ b/configure.in @@ -2345,13 +2345,15 @@ AC_CHECK_HEADERS( \ net/if.h \ netinet/if_ether.h\ netinet/icmp6.h \ + netinet/in.h \ netinet/ip.h \ netinet/ip6.h \ netinet/ip_compat.h\ + netinet/ip_fil_compat.h\ netinet/ip_fil.h\ netinet/ip_icmp.h \ - netinet/ip_nat.h\ netinet/ipl.h \ + netinet/ip_nat.h\ net/pfvar.h \ sys/mount.h\ resolv.h \ -- 2.47.3