From 4c847f5ff65262592c339c1ec42ec3b44ea8eae1 Mon Sep 17 00:00:00 2001 From: Ryan Bloom Date: Mon, 12 Jun 2000 23:34:23 +0000 Subject: [PATCH] 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 --- configure.in | 4 ---- include/ap_config.h | 5 ----- 2 files changed, 9 deletions(-) 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 */ -- 2.40.0