From 0311d6aeb44e155132a332efcb8dfd9025cf2bf8 Mon Sep 17 00:00:00 2001 From: Jim Jagielski Date: Fri, 24 Jan 2014 20:24:36 +0000 Subject: [PATCH] Use simple macro ifdef rather than APR versioning... git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1561150 13f79535-47bb-0310-9956-ffa450edef68 --- server/core.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/server/core.c b/server/core.c index c542de6327..567b82138c 100644 --- a/server/core.c +++ b/server/core.c @@ -49,7 +49,6 @@ #include "mod_proxy.h" #include "ap_listen.h" #include "ap_provider.h" -#include "apr_version.h" #include "mod_so.h" /* for ap_find_loaded_module_symbol */ @@ -4907,7 +4906,7 @@ static int core_pre_connection(conn_rec *c, void *csd) rv = apr_socket_opt_set(csd, APR_TCP_NODELAY, 1); if (rv != APR_SUCCESS && rv != APR_ENOTIMPL -#if APR_VERSION_AT_LEAST(1,5,1) +#ifdef APR_EOPNOTSUPP && rv != APR_EOPNOTSUPP #endif ) { -- 2.50.1