mirror of
https://gitlab.xiph.org/xiph/icecast-server.git
synced 2024-10-27 05:10:11 -04:00
c6beb943d5
svn path=/trunk/icecast/; revision=5598
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>])
|
|
])
|