From: Amos Jeffries Date: Sat, 7 Nov 2009 15:13:48 +0000 (+1300) Subject: Convert IpIntercept to #if syntax X-Git-Tag: SQUID_3_2_0_1~597 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=b0dfd10b2d62a20659eea874f047648e0308b705;p=thirdparty%2Fsquid.git Convert IpIntercept to #if syntax --- diff --git a/src/ip/IpIntercept.cc b/src/ip/IpIntercept.cc index e54eb08143..e4a5822cb0 100644 --- a/src/ip/IpIntercept.cc +++ b/src/ip/IpIntercept.cc @@ -31,7 +31,7 @@ * */ #include "config.h" -#include "IpIntercept.h" +#include "ip/IpIntercept.h" #include "fde.h" #if IPF_TRANSPARENT @@ -45,7 +45,7 @@ #if HAVE_NET_IF_H #include #endif -#ifdef HAVE_IPL_H +#if HAVE_IPL_H #include #elif HAVE_NETINET_IPL_H #include @@ -79,10 +79,10 @@ #include #include #include -#ifdef HAVE_NET_PF_PFVAR_H +#if HAVE_NET_PF_PFVAR_H #include #endif /* HAVE_NET_PF_PFVAR_H */ -#ifdef HAVE_NET_PFVAR_H +#if HAVE_NET_PFVAR_H #include #endif /* HAVE_NET_PFVAR_H */ #endif /* PF_TRANSPARENT required headers */ @@ -93,7 +93,7 @@ #endif #if LINUX_TPROXY2 -#ifdef HAVE_LINUX_NETFILTER_IPV4_IP_TPROXY_H +#if HAVE_LINUX_NETFILTER_IPV4_IP_TPROXY_H #include #else #error " TPROXY v2 Header file missing: linux/netfilter_ipv4/ip_tproxy.h. Perhapse you meant to use TPROXY v4 ? "