r11852@Kushana: nickm | 2007-01-05 18:34:27 -0500

More missing headers in configure.in in order to solve previous openbsd in6_addr issue and prevent related issues from arising.


svn:r9273
This commit is contained in:
Nick Mathewson 2007-01-05 23:34:31 +00:00
parent 135aed5670
commit 81bcab21fc

View File

@ -493,7 +493,10 @@ AC_CHECK_HEADERS(net/pfvar.h, [net_pfvar_found=1], [net_pfvar_found=0],
#endif]) #endif])
AC_CHECK_HEADERS(linux/netfilter_ipv4.h, AC_CHECK_HEADERS(linux/netfilter_ipv4.h,
[linux_netfilter_ipv4=1], [linux_netfilter_ipv4=0], [linux_netfilter_ipv4=1], [linux_netfilter_ipv4=0],
[#ifdef HAVE_SYS_SOCKET_H [#ifdef HAVE_SYS_TYPES_H
#include <sys/types.h>
#endif
#ifdef HAVE_SYS_SOCKET_H
#include <sys/socket.h> #include <sys/socket.h>
#endif]) #endif])
@ -555,7 +558,10 @@ AC_CHECK_SIZEOF(size_t)
AC_CHECK_TYPES([uint, u_char]) AC_CHECK_TYPES([uint, u_char])
AC_CHECK_TYPES([struct in6_addr, struct sockaddr_storage], , , AC_CHECK_TYPES([struct in6_addr, struct sockaddr_storage], , ,
[#ifdef HAVE_NETINET_IN_H [#ifdef HAVE_SYS_TYPES_H
#include <sys/types.h>
#endif
#ifdef HAVE_NETINET_IN_H
#include <netinet/in.h> #include <netinet/in.h>
#endif #endif
#ifdef HAVE_NETINET_IN6_H #ifdef HAVE_NETINET_IN6_H
@ -568,6 +574,15 @@ AC_CHECK_TYPES([struct in6_addr, struct sockaddr_storage], , ,
if test -z "$CROSS_COMPILE"; then if test -z "$CROSS_COMPILE"; then
AC_CACHE_CHECK([whether time_t is signed], tor_cv_time_t_signed, [ AC_CACHE_CHECK([whether time_t is signed], tor_cv_time_t_signed, [
AC_TRY_RUN([ AC_TRY_RUN([
#ifdef HAVE_SYS_TYPES_H
#include <sys/types.h>
#endif
#ifdef HAVE_SYS_TIME_H
#include <sys/time.h>
#endif
#ifdef HAVE_TIME_H
#include <time.h>
#endif
int main(int c, char**v) { if (((time_t)-1)<0) return 1; else return 0; }], int main(int c, char**v) { if (((time_t)-1)<0) return 1; else return 0; }],
tor_cv_time_t_signed=no, tor_cv_time_t_signed=yes) tor_cv_time_t_signed=no, tor_cv_time_t_signed=yes)
]) ])