diff options
author | Nick Mathewson <nickm@torproject.org> | 2008-07-07 15:09:26 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2008-07-07 15:09:26 +0000 |
commit | 133f011c495670dbac2ce141f02e64869d6f5b62 (patch) | |
tree | d33e1230d7c67087e04488666ca6650af12f68e5 /configure.in | |
parent | 0e3efc1140b22e7b8891d109f15ebe5ab12ff9cc (diff) | |
download | tor-133f011c495670dbac2ce141f02e64869d6f5b62.tar.gz tor-133f011c495670dbac2ce141f02e64869d6f5b62.zip |
Patch from coderman: detect transparent proxy header correctly on some linux versions.
svn:r15726
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/configure.in b/configure.in index 3c55f06200..c266e31b5e 100644 --- a/configure.in +++ b/configure.in @@ -349,6 +349,9 @@ AC_CHECK_HEADERS(linux/netfilter_ipv4.h, #endif #ifdef HAVE_SYS_SOCKET_H #include <sys/socket.h> +#endif +#ifdef HAVE_NETINET_IN_H +#include <netinet/in.h> #endif]) if test x$transparent = xtrue ; then |