diff options
author | Roger Dingledine <arma@torproject.org> | 2004-10-01 19:55:01 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2004-10-01 19:55:01 +0000 |
commit | 0b728284d26e5b8b5cd949dfc1d122cd4828e65c (patch) | |
tree | c65af0f30284a1065588cc93f6dd11b44f2f19a0 | |
parent | ce0c7c554da4288666352f2636a817409f7d7a60 (diff) | |
download | tor-0b728284d26e5b8b5cd949dfc1d122cd4828e65c.tar tor-0b728284d26e5b8b5cd949dfc1d122cd4828e65c.tar.gz |
make zlib.h a required header, not an optional header
svn:r2406
-rw-r--r-- | configure.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.in b/configure.in index e610c2f30..73d7cc7d1 100644 --- a/configure.in +++ b/configure.in @@ -139,11 +139,11 @@ LIBS="$saved_LIBS -lssl -lcrypto" 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/stat.h sys/poll.h sys/types.h fcntl.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 pwd.h grp.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 fcntl.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 pwd.h grp.h zlib.h, , AC_MSG_WARN(some headers were not found, compilation may fail)) dnl These headers are not essential -AC_CHECK_HEADERS(stdint.h sys/types.h inttypes.h sys/param.h sys/wait.h sys/limits.h netinet/in.h arpa/inet.h machine/limits.h zlib.h) +AC_CHECK_HEADERS(stdint.h sys/types.h inttypes.h sys/param.h sys/wait.h sys/limits.h netinet/in.h arpa/inet.h machine/limits.h) AC_CHECK_FUNCS(gettimeofday ftime socketpair uname inet_aton strptime) AC_REPLACE_FUNCS(strlcat strlcpy) |