From: Ryan Bloom Date: Thu, 8 Jun 2000 21:32:13 +0000 (+0000) Subject: Fix the check for rlim_t correctly. I wish I had known that we had X-Git-Tag: APACHE_2_0_ALPHA_5~405 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=568362d70c59098c80e0c9ab8f320c7434a79d8a;p=apache Fix the check for rlim_t correctly. I wish I had known that we had created an rlim_t check in acinclude.m4. :-) Submitted by: Jeff Trawick git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@85476 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/configure.in b/configure.in index 2be2f09286..665a2920b6 100644 --- a/configure.in +++ b/configure.in @@ -217,6 +217,8 @@ bindir=$bindir progname=$progname ]) +AC_TYPE_RLIM_T + perlbin=`./helpers/PrintPath perl` AC_SUBST(perlbin) diff --git a/include/ap_config.h b/include/ap_config.h index 3fa206e340..2f0a8a3cac 100644 --- a/include/ap_config.h +++ b/include/ap_config.h @@ -56,7 +56,6 @@ #define AP_AC_CONFIG_H #include "ap_mmn.h" /* MODULE_MAGIC_NUMBER_ */ -#include /* rlim_t */ /* Implemented flags for dynamic library bindings. * @@ -246,10 +245,6 @@ extern int strncasecmp(const char *, const char *, unsigned); #undef USE_MMAP_FILES #endif -#ifndef rlim_t -typedef unsigned long rlim_t; -#endif - #if defined(CHARSET_EBCDIC) && !defined(APACHE_XLATE) #define APACHE_XLATE #endif