1
0
mirror of https://gitlab.xiph.org/xiph/icecast-server.git synced 2024-12-04 14:46:30 -05:00

Fix a compile error.

svn path=/trunk/icecast/; revision=4115
This commit is contained in:
Michael Smith 2002-11-22 13:13:04 +00:00
parent 7b4730cbfd
commit 7c7fa73422
2 changed files with 5 additions and 0 deletions

View File

@ -81,6 +81,9 @@ AC_C_CONST
dnl Check for types
dnl Checks for library functions.
AC_CHECK_FUNCS(nanosleep)
AC_CHECK_FUNCS(sethostent endhostent)
AC_CHECK_FUNCS(getnameinfo getaddrinfo inet_pton)
dnl -- configure options --

View File

@ -22,6 +22,8 @@
#ifndef __SOCK_H
#define __SOCK_H
#include <unistd.h>
#ifdef _WIN32
#include <winsock2.h>
#endif