mirror of
https://github.com/apache/httpd.git
synced 2025-08-20 16:09:55 +00:00
Fix what I think is a bug where rlim_t won't be #defined on systems
that need it if the autoconf check for it was cached. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@84201 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
@ -71,9 +71,11 @@ AC_DEFUN(AC_TYPE_RLIM_T, [
|
||||
AC_TRY_COMPILE([#include <sys/resource.h>], [rlim_t spoon;], [
|
||||
ac_cv_type_rlim_t=yes
|
||||
],[ac_cv_type_rlim_t=no
|
||||
AC_DEFINE(rlim_t, int)
|
||||
])
|
||||
])
|
||||
if test "$ac_ac_type_rlim_t" = "no" ; then
|
||||
AC_DEFINE(rlim_t, int)
|
||||
fi
|
||||
])
|
||||
|
||||
dnl
|
||||
|
Reference in New Issue
Block a user