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:
Manoj Kasichainula
1999-12-01 01:21:38 +00:00
parent 04c494c2b5
commit c264c5e2a1

View File

@ -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