Return-Path: X-Original-To: apmail-subversion-commits-archive@minotaur.apache.org Delivered-To: apmail-subversion-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 58A221090E for ; Wed, 23 Oct 2013 10:45:51 +0000 (UTC) Received: (qmail 20162 invoked by uid 500); 23 Oct 2013 10:45:45 -0000 Delivered-To: apmail-subversion-commits-archive@subversion.apache.org Received: (qmail 20135 invoked by uid 500); 23 Oct 2013 10:45:40 -0000 Mailing-List: contact commits-help@subversion.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@subversion.apache.org Delivered-To: mailing list commits@subversion.apache.org Received: (qmail 19546 invoked by uid 99); 23 Oct 2013 10:45:37 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 23 Oct 2013 10:45:37 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 23 Oct 2013 10:45:35 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 6D40123888E4; Wed, 23 Oct 2013 10:45:14 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1534980 - /subversion/trunk/subversion/libsvn_subr/io.c Date: Wed, 23 Oct 2013 10:45:14 -0000 To: commits@subversion.apache.org From: brane@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20131023104514.6D40123888E4@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: brane Date: Wed Oct 23 10:45:13 2013 New Revision: 1534980 URL: http://svn.apache.org/r1534980 Log: * subversion/libsvn_subr/io.c: Optionally define APR_FREADONLY. Modified: subversion/trunk/subversion/libsvn_subr/io.c Modified: subversion/trunk/subversion/libsvn_subr/io.c URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/libsvn_subr/io.c?rev=1534980&r1=1534979&r2=1534980&view=diff ============================================================================== --- subversion/trunk/subversion/libsvn_subr/io.c (original) +++ subversion/trunk/subversion/libsvn_subr/io.c Wed Oct 23 10:45:13 2013 @@ -38,6 +38,14 @@ #endif #endif +/* This symbol is defined in APR's private header apr_arch_file_io.h. + It should really be public, but ... there it is. */ +#if defined(WIN32) || defined(__OS2__) || !defined(APR_HAS_USER) +#ifndef APR_FREADONLY +#define APR_FREADONLY 0x10000000 +#endif +#endif + #include #include #include