Return-Path: Delivered-To: apmail-ant-notifications-archive@minotaur.apache.org Received: (qmail 56718 invoked from network); 11 Jun 2010 18:42:20 -0000 Received: from unknown (HELO mail.apache.org) (140.211.11.3) by 140.211.11.9 with SMTP; 11 Jun 2010 18:42:20 -0000 Received: (qmail 8632 invoked by uid 500); 11 Jun 2010 18:42:20 -0000 Delivered-To: apmail-ant-notifications-archive@ant.apache.org Received: (qmail 8554 invoked by uid 500); 11 Jun 2010 18:42:19 -0000 Mailing-List: contact notifications-help@ant.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@ant.apache.org Delivered-To: mailing list notifications@ant.apache.org Received: (qmail 8547 invoked by uid 99); 11 Jun 2010 18:42:19 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 11 Jun 2010 18:42:19 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.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; Fri, 11 Jun 2010 18:42:17 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id EF6DE2388A74; Fri, 11 Jun 2010 18:41:34 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r953821 - /ant/core/trunk/WHATSNEW Date: Fri, 11 Jun 2010 18:41:34 -0000 To: notifications@ant.apache.org From: jglick@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20100611184134.EF6DE2388A74@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: jglick Date: Fri Jun 11 18:41:34 2010 New Revision: 953821 URL: http://svn.apache.org/viewvc?rev=953821&view=rev Log: Mentioning #49430. Modified: ant/core/trunk/WHATSNEW Modified: ant/core/trunk/WHATSNEW URL: http://svn.apache.org/viewvc/ant/core/trunk/WHATSNEW?rev=953821&r1=953820&r2=953821&view=diff ============================================================================== --- ant/core/trunk/WHATSNEW (original) +++ ant/core/trunk/WHATSNEW Fri Jun 11 18:41:34 2010 @@ -19,6 +19,9 @@ Changes that could break older environme Fixed bugs: ----------- + * mmap-based file copy problems under JDK 1.4 on Linux. + Bugzilla Report 49430. + * The Sun JVM tries to mmap the entire file during a copy. For large files this is not feasible. We now explicitly request to copy at most 16 MiB per request.