Add checks for functions used in os/access.c & os/connection.c:

getdtablesize(), getifaddrs(), getpeereid(), getpeerucred()
This commit is contained in:
Alan Coopersmith 2005-08-06 19:48:12 +00:00
parent 2304c14fe5
commit b90a88e803
2 changed files with 21 additions and 0 deletions

View File

@ -71,6 +71,15 @@ AC_TYPE_PID_T
AC_FUNC_VPRINTF
AC_CHECK_FUNCS([geteuid getuid link memmove memset mkstemp strchr strrchr strtol getopt getopt_long vsnprintf walkcontext])
AC_FUNC_ALLOCA
# Old HAS_* names used in os/*.c
AC_CHECK_FUNC([getdtablesize], AC_DEFINE(HAS_GETDTABLESIZE,1,
[Define to 1 if you have the `getdtablesize' function.]))
AC_CHECK_FUNC([getifaddrs], AC_DEFINE(HAS_GETIFADDRS,1,
[Define to 1 if you have the `getifaddrs' function.]))
AC_CHECK_FUNC([getpeereid], AC_DEFINE(HAS_GETPEEREID,1,
[Define to 1 if you have the `getpeereid' function.]))
AC_CHECK_FUNC([getpeerucred], AC_DEFINE(HAS_GETPEERUCRED,1,
[Define to 1 if you have the `getpeerucred' function.]))
AM_CONDITIONAL(NEED_VSNPRINTF, [test x$HAVE_VSNPRINTF = xno])

View File

@ -59,6 +59,18 @@
/* Support XDM-AUTH*-1 */
#undef HASXDMAUTH
/* Define to 1 if you have the `getdtablesize' function. */
#undef HAS_GETDTABLESIZE
/* Define to 1 if you have the `getifaddrs' function. */
#undef HAS_GETIFADDRS
/* Define to 1 if you have the `getpeereid' function. */
#undef HAS_GETPEEREID
/* Define to 1 if you have the `getpeerucred' function. */
#undef HAS_GETPEERUCRED
/* Support SHM */
#undef HAS_SHM