1
0
mirror of https://gitlab.xiph.org/xiph/icecast-server.git synced 2024-09-22 04:15:54 -04:00

OS X 10.2.3 doesn't define socklen_t.

This version is compatible with autoconf 2.13. I believe it should also
work in 2.5x, although the semantics of AC_CHECK_TYPE have changed.

svn path=/trunk/icecast/; revision=4243
This commit is contained in:
brendan 2003-01-15 05:58:09 +00:00
parent 755d94e937
commit c6e4268872
2 changed files with 3 additions and 0 deletions

2
acconfig.h Normal file
View File

@ -0,0 +1,2 @@
/* Define if you lack the socklen_t type */
#undef socklen_t

View File

@ -91,6 +91,7 @@ dnl Checks for typedefs, structures, and compiler characteristics.
AC_C_CONST
dnl Check for types
AC_CHECK_TYPE([socklen_t], int)
dnl Checks for library functions.
AC_CHECK_FUNCS(nanosleep)