From: Jim Jagielski Date: Fri, 24 Jan 2014 20:24:36 +0000 (+0000) Subject: Use simple macro ifdef rather than APR versioning... X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5b720720743b279c6e22fd91bb67a7e7c7d84606;p=thirdparty%2Fapache%2Fhttpd.git 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 --- diff --git a/server/core.c b/server/core.c index c542de63274..567b82138c8 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 ) {