diff options
author | Nick Mathewson <nickm@torproject.org> | 2003-08-12 07:43:15 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2003-08-12 07:43:15 +0000 |
commit | 2cb4f7a473a35792f4d7a951ac43bfab79abebec (patch) | |
tree | f7bcfa4e86e3d93878181c7e580eb25f6c4a3132 /configure.in | |
parent | 5d9cfb71649f15db09290a7c390a0f9d95b52548 (diff) | |
download | tor-2cb4f7a473a35792f4d7a951ac43bfab79abebec.tar.gz tor-2cb4f7a473a35792f4d7a951ac43bfab79abebec.zip |
Adopt socketpair implementation from perl. For now, always use it.
svn:r389
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.in b/configure.in index 83baf2982a..8adc9415d1 100644 --- a/configure.in +++ b/configure.in @@ -134,9 +134,9 @@ AC_CHECK_HEADERS(unistd.h string.h signal.h netdb.h ctype.h poll.h sys/poll.h sy dnl These headers are not essential -AC_CHECK_HEADERS(stdint.h sys/types.h inttypes.h sys/wait.h) +AC_CHECK_HEADERS(stdint.h sys/types.h inttypes.h sys/wait.h netinet/in.h arpa/inet.h) -AC_CHECK_FUNCS(gettimeofday ftime) +AC_CHECK_FUNCS(gettimeofday ftime socketpair) dnl In case we aren't given a working stdint.h, we'll need to grow our own. dnl Watch out. |