From: Ryan Bloom Date: Mon, 12 Jun 2000 23:34:23 +0000 (+0000) Subject: Remove the check for EAGAIN. With APR handling the error codes, this is X-Git-Tag: APACHE_2_0_ALPHA_5~339 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=4c847f5ff65262592c339c1ec42ec3b44ea8eae1;p=apache Remove the check for EAGAIN. With APR handling the error codes, this is no longer an issue that Apache needs to deal with. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@85559 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/configure.in b/configure.in index c8a2d5544c..a19afe04ae 100644 --- a/configure.in +++ b/configure.in @@ -83,10 +83,6 @@ grp.h \ ) AC_HEADER_SYS_WAIT -dnl ## Check for C preprocessor symbols - -AC_CHECK_DEFINE(EAGAIN, errno.h) - dnl ## Check for typedefs, structures, and compiler characteristics. AC_C_CONST diff --git a/include/ap_config.h b/include/ap_config.h index dd64c4a1c2..1fcf199561 100644 --- a/include/ap_config.h +++ b/include/ap_config.h @@ -124,11 +124,6 @@ extern "C" { #define ap_sigwait(a,b) sigwait((a),(b)) #endif -/* EAGAIN apparently isn't defined on some systems */ -#if !defined(HAVE_EAGAIN) && !defined(EAGAIN) -#define EAGAIN EWOULDBLOCK -#endif - /* * String and memory functions */