diff options
author | Roger Dingledine <arma@torproject.org> | 2003-09-23 20:04:28 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2003-09-23 20:04:28 +0000 |
commit | 36ec1792d250a9694273c12d832229e077e9bf76 (patch) | |
tree | 523402e9a78a5c8048bdd791f4f5fc350977ea84 /configure.in | |
parent | a93b44eb3b6a38bbce2b07f836abda4c88638687 (diff) | |
download | tor-36ec1792d250a9694273c12d832229e077e9bf76.tar.gz tor-36ec1792d250a9694273c12d832229e077e9bf76.zip |
bugfix: we weren't looking for sys/stat.h
svn:r480
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.in b/configure.in index 7576acdc21..6283610164 100644 --- a/configure.in +++ b/configure.in @@ -130,7 +130,7 @@ LIBS="$saved_LIBS -lcrypto -lssl" dnl The warning message here is no longer strictly accurate. -AC_CHECK_HEADERS(unistd.h string.h signal.h netdb.h ctype.h poll.h sys/poll.h sys/types.h sys/fcntl.h sys/ioctl.h sys/socket.h sys/time.h netinet/in.h arpa/inet.h errno.h assert.h time.h, , AC_MSG_WARN(some headers were not found, compilation may fail)) +AC_CHECK_HEADERS(unistd.h string.h signal.h netdb.h ctype.h poll.h sys/stat.h sys/poll.h sys/types.h sys/fcntl.h sys/ioctl.h sys/socket.h sys/time.h netinet/in.h arpa/inet.h errno.h assert.h time.h, , AC_MSG_WARN(some headers were not found, compilation may fail)) dnl These headers are not essential |