summaryrefslogtreecommitdiffstats
path: root/aclocal/ipv6.m4
blob: 5ee8fb6e85f1c54e39d2c1016b0b0abfb2aa7ea6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
dnl Checks for IPv6 support
dnl
AC_DEFUN([AC_IPV6], [

  AC_CHECK_DECL([AI_ADDRCONFIG],
                [AC_DEFINE([HAVE_DECL_AI_ADDRCONFIG], 1,
                           [Define this to 1 if AI_ADDRCONFIG macro is defined])], ,
                [ #include <netdb.h> ])

  if test "$enable_ipv6" = yes; then

    dnl TI-RPC required for IPv6
    if test "$enable_tirpc" = no; then
      AC_MSG_ERROR(['--enable-ipv6' requires TIRPC support.])
    fi

    dnl IPv6-enabled networking functions required for IPv6
    AC_CHECK_FUNCS([getifaddrs getnameinfo bindresvport_sa], ,
                   [AC_MSG_ERROR([Missing library functions needed for IPv6.])])

    dnl Need to detect presence of IPv6 networking at run time via
    dnl getaddrinfo(3); old versions of glibc do not support ADDRCONFIG
    AC_CHECK_DECL([AI_ADDRCONFIG], ,
                  [AC_MSG_ERROR([full getaddrinfo(3) implementation needed for IPv6 support])],
                  [ #include <netdb.h> ])

  fi

])dnl