r11850@Kushana: nickm | 2007-01-05 17:12:08 -0500

Look in netinet/in6.h header when looking for struct in6_addr. (Issue found by saeftl.)


svn:r9272
This commit is contained in:
Nick Mathewson 2007-01-05 22:12:15 +00:00
parent 48a9fe4bbd
commit 135aed5670
3 changed files with 15 additions and 3 deletions

View File

@ -138,6 +138,7 @@ Changes in version 0.1.2.5-alpha - 2007-01-03
- When the user uses bad syntax in the Log config line, stop
suggesting other bad syntax as a replacement.
- Avoid a double-free when parsing malformed DirServer lines.
- Correctly detect ipv6 DNS capability on OpenBSD.
o Controller features:
- Have GETINFO dir/status/* work on hosts with DirPort disabled.

View File

@ -472,7 +472,7 @@ AC_CHECK_HEADERS(zlib.h, , AC_MSG_ERROR(Zlib header (zlib.h) not found. Tor requ
dnl These headers are not essential
AC_CHECK_HEADERS(stdint.h sys/types.h inttypes.h sys/param.h sys/wait.h limits.h sys/limits.h netinet/in.h arpa/inet.h machine/limits.h syslog.h sys/time.h sys/resource.h inttypes.h utime.h sys/utime.h sys/mman.h)
AC_CHECK_HEADERS(stdint.h sys/types.h inttypes.h sys/param.h sys/wait.h limits.h sys/limits.h netinet/in.h arpa/inet.h machine/limits.h syslog.h sys/time.h sys/resource.h inttypes.h utime.h sys/utime.h sys/mman.h netintet/in.h netinet/in6.h)
AC_CHECK_HEADERS(net/if.h, [net_if_found=1], [net_if_found=0],
[#ifdef HAVE_SYS_TYPES_H
@ -555,8 +555,15 @@ AC_CHECK_SIZEOF(size_t)
AC_CHECK_TYPES([uint, u_char])
AC_CHECK_TYPES([struct in6_addr, struct sockaddr_storage], , ,
[#include <netinet/in.h>
#include <sys/socket.h>])
[#ifdef HAVE_NETINET_IN_H
#include <netinet/in.h>
#endif
#ifdef HAVE_NETINET_IN6_H
#include <netinet/in6.h>
#endif
#ifdef HAVE_SYS_SOCKET_H
#include <sys/socket.h>
#endif])
if test -z "$CROSS_COMPILE"; then
AC_CACHE_CHECK([whether time_t is signed], tor_cv_time_t_signed, [

View File

@ -96,6 +96,10 @@
#include <arpa/inet.h>
#endif
#ifdef HAVE_NETINET_IN6_H
#include <netinet/in6.h>
#endif
#ifdef WIN32
typedef int socklen_t;
#endif