configure.in: getrlimit setrlimit sys/resource.h

This commit is contained in:
Darryl L. Miles 2025-02-24 08:35:12 +00:00 committed by R. Timothy Edwards
parent 61e4e155ec
commit c676c6b1d3
1 changed files with 9 additions and 0 deletions

View File

@ -132,6 +132,12 @@ AC_HEADER_STDC
dnl Need either setenv or putenv
AC_CHECK_FUNCS(setenv putenv)
dnl Check for getrlimit
AC_CHECK_FUNCS(getrlimit)
dnl Check for setrlimit
AC_CHECK_FUNCS(setrlimit)
dnl Check for vfork
AC_CHECK_FUNC(vfork)
@ -150,6 +156,9 @@ AC_CHECK_HEADERS(param.h)
dnl Check for <paths.h>
AC_CHECK_HEADERS(paths.h)
dnl Check for <sys/resource.h>
AC_CHECK_HEADERS(sys/resource.h)
dnl Check for <sys/time.h>
AC_CHECK_HEADERS(sys/time.h)