From: Graham Leggett Date: Sat, 17 Dec 2011 17:55:32 +0000 (+0000) Subject: Fix the test for APR_HAVE_SYS_SYSLIMITS_H. X-Git-Tag: 2.5.0-alpha~7665 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=a4a2e8d15ded51b4ab063273b4bdb6304f704ae9;p=apache Fix the test for APR_HAVE_SYS_SYSLIMITS_H. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1215537 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/debugging/mod_firehose.c b/modules/debugging/mod_firehose.c index da7a28ee21..33450ddb57 100644 --- a/modules/debugging/mod_firehose.c +++ b/modules/debugging/mod_firehose.c @@ -40,10 +40,10 @@ #include "apr_uuid.h" #include "mod_proxy.h" -#ifdef APR_HAVE_SYS_SYSLIMITS_H +#if APR_HAVE_SYS_SYSLIMITS_H #include #endif -#ifdef APR_HAVE_LINUX_LIMITS_H +#if APR_HAVE_LINUX_LIMITS_H #include #endif #if APR_HAVE_FCNTL_H