Return-Path: X-Original-To: apmail-subversion-dev-archive@minotaur.apache.org Delivered-To: apmail-subversion-dev-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 93469F175 for ; Mon, 25 Mar 2013 00:01:35 +0000 (UTC) Received: (qmail 50989 invoked by uid 500); 25 Mar 2013 00:01:35 -0000 Delivered-To: apmail-subversion-dev-archive@subversion.apache.org Received: (qmail 50951 invoked by uid 500); 25 Mar 2013 00:01:35 -0000 Mailing-List: contact dev-help@subversion.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Delivered-To: mailing list dev@subversion.apache.org Received: (qmail 50943 invoked by uid 99); 25 Mar 2013 00:01:35 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 25 Mar 2013 00:01:35 +0000 X-ASF-Spam-Status: No, hits=-0.7 required=5.0 tests=RCVD_IN_DNSWL_LOW,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of joe.swatosh@gmail.com designates 209.85.212.171 as permitted sender) Received: from [209.85.212.171] (HELO mail-wi0-f171.google.com) (209.85.212.171) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 25 Mar 2013 00:01:28 +0000 Received: by mail-wi0-f171.google.com with SMTP id hn17so9543762wib.4 for ; Sun, 24 Mar 2013 17:01:08 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:x-received:date:message-id:subject:from:to :content-type; bh=ByqxpttUHRZrZLYYwa4qwwXz+uiqwDV8EbDEuXe1XAU=; b=nlVv2GvbMlxTgVQBx6WrGddMcZM9tSJKavMDqFcOeLIhn0Oo3G5zgyzqPqmiUgX7Oi VNDUWSFx/DNSBCmmKZjo4xzUH6F0n1dX+qDDXyteYWbKfaNUF33S6UxPWDcUqUUHNUdm ykXFEm/pyHm5RyiANLQ8UvcxdmJp3sQUQSqXcxM4LtxJW+kSsZtKW2XUfkDpYQDcR5TH nf+KL63M+r/ROsEyhLNGvI5IS1bBXwau7NKIL05jbVXViALF+32t7+T5+6Yw1mUn4S56 I7vWCZW3KNX2XKX4FwqJVSQROJ9the5rSwc6MBdbQ6LyFTP8VNy2A3g72NGNV9qG4JDx AKJw== MIME-Version: 1.0 X-Received: by 10.180.90.18 with SMTP id bs18mr797908wib.31.1364169668457; Sun, 24 Mar 2013 17:01:08 -0700 (PDT) Received: by 10.194.155.69 with HTTP; Sun, 24 Mar 2013 17:01:08 -0700 (PDT) Date: Sun, 24 Mar 2013 17:01:08 -0700 Message-ID: Subject: [PATCH] #include limts.h for ULONG_MAX From: Joe Swatosh To: SVN Dev Content-Type: text/plain; charset=ISO-8859-1 X-Virus-Checked: Checked by ClamAV on apache.org While I found this issue using my very old compiler, it seems reasonable since that is where ULONG_MAX has been defined for a long time. (Since clearly no one else is running into this). [[[ For those of us with somewhat deficient compilers that don't provide ULONG_MAX unless is explicitly included. * subversion/include/svn_types.h (includes): Add include of limits.h ]]] Index: subversion/include/svn_types.h =================================================================== --- subversion/include/svn_types.h (revision 1460195) +++ subversion/include/svn_types.h (working copy) @@ -29,6 +29,7 @@ /* ### this should go away, but it causes too much breakage right now */ #include +#include /* for ULONG_MAX */ #include /* for apr_size_t, apr_int64_t, ... */ #include /* for apr_status_t */