1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
|
;;
esac
AC_CHECK_HEADER(sys/socket.h, [
AC_DEFINE(OF_HAVE_SYS_SOCKET_H, 1,
[Whether we have sys/socket.h])
])
AC_CHECK_MEMBER([struct sockaddr_storage.ss_family], [
AC_DEFINE(OF_HAVE_SOCKADDR_STORAGE, 1,
[Whether we have struct sockaddr_storage])
], [], [
#ifdef OF_HAVE_SYS_TYPES_H
# include <sys/types.h>
#endif
#ifdef OF_HAVE_SYS_SOCKET_H
|
|
|
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
|
;;
esac
AC_CHECK_HEADER(sys/socket.h, [
AC_DEFINE(OF_HAVE_SYS_SOCKET_H, 1,
[Whether we have sys/socket.h])
])
AC_CHECK_TYPE([struct sockaddr_storage], [
AC_DEFINE(OF_HAVE_SOCKADDR_STORAGE, 1,
[Whether we have struct sockaddr_storage])
], [], [
#ifdef OF_HAVE_SYS_TYPES_H
# include <sys/types.h>
#endif
#ifdef OF_HAVE_SYS_SOCKET_H
|
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
|
egrep_cpp_yes
#endif
], [
AC_DEFINE(OF_HAVE_APPLETALK, 1,
[Whether we have AppleTalk])
AC_SUBST(USE_SRCS_APPLETALK, '${SRCS_APPLETALK}')
AC_CHECK_MEMBERS([struct ifreq.ifr_name], [
AC_DEFINE(OF_HAVE_APPLETALK_IFCONFIG, 1,
m4_normalize([
Whether AppleTalk interfaces
can be configured
]))
AC_SUBST(OFATALKCFG, ofatalkcfg)
], [], [
|
|
|
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
|
egrep_cpp_yes
#endif
], [
AC_DEFINE(OF_HAVE_APPLETALK, 1,
[Whether we have AppleTalk])
AC_SUBST(USE_SRCS_APPLETALK, '${SRCS_APPLETALK}')
AC_CHECK_TYPE([struct ifreq], [
AC_DEFINE(OF_HAVE_APPLETALK_IFCONFIG, 1,
m4_normalize([
Whether AppleTalk interfaces
can be configured
]))
AC_SUBST(OFATALKCFG, ofatalkcfg)
], [], [
|
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
|
[Whether we have select() or similar])
AC_SUBST(OF_SELECT_KERNEL_EVENT_OBSERVER_M,
"OFSelectKernelEventObserver.m")
])
;;
esac
AC_CHECK_HEADERS(ifaddrs.h)
AC_CHECK_FUNC(getifaddrs, [
AC_DEFINE(OF_HAVE_GETIFADDRS, 1, [Whether we have getifaddrs()])
])
AC_ARG_WITH(tls,
AS_HELP_STRING([--with-tls], [
enable TLS support using the specified library
(yes, openssl, gnutls, securetransport or no)]))
AS_IF([test x"$with_tls" = x""], [with_tls="yes"])
|
|
>
>
>
>
>
|
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
|
[Whether we have select() or similar])
AC_SUBST(OF_SELECT_KERNEL_EVENT_OBSERVER_M,
"OFSelectKernelEventObserver.m")
])
;;
esac
AC_CHECK_HEADERS(ifaddrs.h netpacket/packet.h)
AC_CHECK_FUNC(getifaddrs, [
AC_DEFINE(OF_HAVE_GETIFADDRS, 1, [Whether we have getifaddrs()])
])
AC_CHECK_TYPES([struct sockaddr_ll], [], [], [
#ifdef HAVE_NETPACKET_PACKET_H
# include <netpacket/packet.h>
#endif
])
AC_ARG_WITH(tls,
AS_HELP_STRING([--with-tls], [
enable TLS support using the specified library
(yes, openssl, gnutls, securetransport or no)]))
AS_IF([test x"$with_tls" = x""], [with_tls="yes"])
|