The following reply was made to PR config/2777; it has been noted by GNATS.
From: Marc Slemko <[EMAIL PROTECTED]> To: Patrick A Linstruth <[EMAIL PROTECTED]> Cc: [EMAIL PROTECTED] Subject: Re: config/2777: unable to open a file descriptor above 15, you may need to increase the number of descriptors Date: Thu, 6 Aug 1998 14:59:51 -0700 (PDT) On Thu, 6 Aug 1998, Patrick A Linstruth wrote: > > I believe 1.3.1 configuration has broke the setting of HAVE_SYS_RESOURCE_H. > > What is this code in ap_config_auto.h supposed to do: > > /* check: #include <sys/resource.h> */ > #ifdef HAVE_SYS_RESOURCE_H > #undef HAVE_SYS_RESOURCE_H > #endif That is automatically generated at config time; what you see is what is generated if it isn't found. The code is in Configure that uses helpers/TestCompile header. However, the whole concept of that may well be broken because it is too dumb to properly include other headers that may be required. Your sys/resource.h may require unistd.h or something. Yea, ok, that is the problem. I'll see about it.
