Return-Path: X-Original-To: apmail-apr-dev-archive@www.apache.org Delivered-To: apmail-apr-dev-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 659399B76 for ; Tue, 22 Nov 2011 20:54:29 +0000 (UTC) Received: (qmail 40332 invoked by uid 500); 22 Nov 2011 20:54:28 -0000 Delivered-To: apmail-apr-dev-archive@apr.apache.org Received: (qmail 39423 invoked by uid 500); 22 Nov 2011 20:54:28 -0000 Mailing-List: contact dev-help@apr.apache.org; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Id: Delivered-To: mailing list dev@apr.apache.org Received: (qmail 39231 invoked by uid 99); 22 Nov 2011 20:54:27 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 22 Nov 2011 20:54:27 +0000 X-ASF-Spam-Status: No, hits=-2.3 required=5.0 tests=RCVD_IN_DNSWL_MED,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: local policy) Received: from [188.40.99.202] (HELO eru.sfritsch.de) (188.40.99.202) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 22 Nov 2011 20:54:21 +0000 Received: from [10.1.1.6] (helo=k.localnet) by eru.sfritsch.de with esmtp (Exim 4.72) (envelope-from ) id 1RSxLr-0005R9-Lo; Tue, 22 Nov 2011 21:53:59 +0100 From: Stefan Fritsch To: dev@httpd.apache.org, dev@apr.apache.org Subject: Re: svn commit: r1204998 - /httpd/httpd/trunk/server/util_expr_eval.c Date: Tue, 22 Nov 2011 21:53:57 +0100 User-Agent: KMail/1.13.7 (Linux/3.1.0-1-amd64; KDE/4.6.5; x86_64; ; ) References: <20111122140226.A980C238897A@eris.apache.org> In-Reply-To: <20111122140226.A980C238897A@eris.apache.org> MIME-Version: 1.0 Content-Type: Text/Plain; charset="utf-8" Content-Transfer-Encoding: 7bit Message-Id: <201111222153.58354.sf@sfritsch.de> On Tuesday 22 November 2011, jim@apache.org wrote: > Author: jim > Date: Tue Nov 22 14:02:25 2011 > New Revision: 1204998 > > URL: http://svn.apache.org/viewvc?rev=1204998&view=rev > Log: > Hello. Let's compile again. > > Modified: > httpd/httpd/trunk/server/util_expr_eval.c > > Modified: httpd/httpd/trunk/server/util_expr_eval.c > URL: > http://svn.apache.org/viewvc/httpd/httpd/trunk/server/util_expr_ev > al.c?rev=1204998&r1=1204997&r2=1204998&view=diff > ================================================================== > ============ --- httpd/httpd/trunk/server/util_expr_eval.c > (original) > +++ httpd/httpd/trunk/server/util_expr_eval.c Tue Nov 22 14:02:25 > 2011 @@ -29,6 +29,8 @@ > #include "apr_lib.h" > #include "apr_fnmatch.h" > > +#include /* for INT_MAX */ > + > /* we know core's module_index is 0 */ > #undef APLOG_MODULE_INDEX > #define APLOG_MODULE_INDEX AP_CORE_MODULE_INDEX Interesting. On Unix and Netware, apr.h already includes limits.h. But on Windows it doesn't. Shouldn't that be identical on all platforms? Such differences don't make writing portable code any easier.