diff options
author | Roger Dingledine <arma@torproject.org> | 2004-03-19 21:33:36 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2004-03-19 21:33:36 +0000 |
commit | 4d3731148159605413dcf8ada463ce28326bdf0d (patch) | |
tree | 378a48397f5472882d2c94f6c9c6bbb5f5c8047c /configure.in | |
parent | c195f690583bd5f6bd7c0c760ee15fed944bbd7c (diff) | |
download | tor-4d3731148159605413dcf8ada463ce28326bdf0d.tar.gz tor-4d3731148159605413dcf8ada463ce28326bdf0d.zip |
we'd forgotten to autoconf fcntl.h
svn:r1304
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 571cab9092..1db5e5fe57 100644 --- a/configure.in +++ b/configure.in @@ -1,6 +1,6 @@ AC_INIT -AM_INIT_AUTOMAKE(tor, 0.0.2) +AM_INIT_AUTOMAKE(tor, 0.0.3) AM_CONFIG_HEADER(orconfig.h) CFLAGS="$CFLAGS -Wall -g -O2 -I/usr/kerberos/include" @@ -130,7 +130,7 @@ 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 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, , AC_MSG_WARN(some headers were not found, compilation may fail)) dnl These headers are not essential |