mirror of
https://gitlab.xiph.org/xiph/ezstream.git
synced 2024-11-03 04:17:18 -05:00
35f54caeba
git-svn-id: https://svn.xiph.org/trunk/ezstream@5800 0101bb08-14d6-0310-b084-bc0e0c8e3800
27 lines
888 B
Plaintext
27 lines
888 B
Plaintext
# XIPH_NET
|
|
# Perform tests required by the net module
|
|
AC_DEFUN([XIPH_NET],
|
|
[dnl
|
|
AC_REQUIRE([XIPH_TYPE_SOCKLEN_T])
|
|
AC_REQUIRE([XIPH_FUNC_VA_COPY])
|
|
AC_CHECK_HEADERS([sys/select.h sys/uio.h])
|
|
AC_CHECK_HEADER([winsock2.h],
|
|
[AC_DEFINE([HAVE_WINSOCK2_H], [1], [Define if you have winsock2.h on MINGW])
|
|
LIBS="$LIBS -lwsock32"])
|
|
|
|
# These tests are ordered based on solaris 8 tests
|
|
AC_SEARCH_LIBS([sethostent], [nsl],
|
|
[AC_DEFINE([HAVE_SETHOSTENT], [1],
|
|
[Define if you have the sethostent function])])
|
|
AC_SEARCH_LIBS([getnameinfo], [socket],
|
|
[AC_DEFINE([HAVE_GETNAMEINFO], [1],
|
|
[Define if you have the getnameinfo function])])
|
|
AC_CHECK_FUNCS([endhostent getaddrinfo inet_aton writev])
|
|
|
|
# Irix defines INET_PTON but not sockaddr_storage!
|
|
AC_CHECK_MEMBERS([struct sockaddr_storage.ss_family],
|
|
[AC_CHECK_FUNCS([inet_pton])],,
|
|
[#include <sys/types.h>
|
|
#include <sys/socket.h>])
|
|
])
|