From: Jeff Trawick Date: Mon, 27 Nov 2000 15:50:26 +0000 (+0000) Subject: use the APR feature test macro to check for sys/uio.h; it is the X-Git-Tag: moving_to_httpd_module~77 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ee3c11ef880b982b3bacf882ce39084aecee6f38;p=apache use the APR feature test macro to check for sys/uio.h; it is the only one defined and it is used in other Apache code; this gets mod_rewrite to compile on RedHat 6.0 (and perhaps some other systems) git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87088 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/mappers/mod_rewrite.c b/modules/mappers/mod_rewrite.c index 32168c20ac..77f382c2cb 100644 --- a/modules/mappers/mod_rewrite.c +++ b/modules/mappers/mod_rewrite.c @@ -109,7 +109,7 @@ #include #endif #endif -#ifdef HAVE_SYS_UIO_H +#ifdef APR_HAVE_SYS_UIO_H #include #endif #endif