diff options
author | Nick Mathewson <nickm@torproject.org> | 2008-07-07 15:17:23 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2008-07-07 15:17:23 +0000 |
commit | 2eda750489196757e1aefff6b2920e8bbace4f2e (patch) | |
tree | 5d7c81ed996f529c024cc8fc5512e54562af2601 /configure.in | |
parent | beeacfde3ad0cc789b417a5848e39f7b94cc6465 (diff) | |
download | tor-2eda750489196757e1aefff6b2920e8bbace4f2e.tar.gz tor-2eda750489196757e1aefff6b2920e8bbace4f2e.zip |
Backport: Patch from coderman: detect transparent proxy header correctly on some linux versions.
svn:r15727
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 d94e0ddab5..b4a84328b1 100644 --- a/configure.in +++ b/configure.in @@ -335,6 +335,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 |