Return-Path: Delivered-To: apmail-apr-commits-archive@www.apache.org Received: (qmail 52966 invoked from network); 12 Sep 2006 13:52:45 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 12 Sep 2006 13:52:45 -0000 Received: (qmail 74986 invoked by uid 500); 12 Sep 2006 13:52:45 -0000 Delivered-To: apmail-apr-commits-archive@apr.apache.org Received: (qmail 74954 invoked by uid 500); 12 Sep 2006 13:52:44 -0000 Mailing-List: contact commits-help@apr.apache.org; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: Reply-To: dev@apr.apache.org List-Id: Delivered-To: mailing list commits@apr.apache.org Received: (qmail 74943 invoked by uid 99); 12 Sep 2006 13:52:44 -0000 Received: from idunn.apache.osuosl.org (HELO idunn.apache.osuosl.org) (140.211.166.84) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 12 Sep 2006 06:52:44 -0700 Authentication-Results: idunn.apache.osuosl.org smtp.mail=rooneg@apache.org; spf=permerror X-ASF-Spam-Status: No, hits=-9.8 required=5.0 tests=ALL_TRUSTED,NO_REAL_NAME Received-SPF: error (idunn.apache.osuosl.org: domain apache.org from 140.211.166.113 cause and error) Received: from ([140.211.166.113:49716] helo=eris.apache.org) by idunn.apache.osuosl.org (ecelerity 2.1 r(10620)) with ESMTP id 62/90-02623-8BBB6054 for ; Tue, 12 Sep 2006 06:52:57 -0700 Received: by eris.apache.org (Postfix, from userid 65534) id 21FB01A981A; Tue, 12 Sep 2006 06:52:41 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r442582 - in /apr/apr/trunk: CHANGES build/gen-build.py Date: Tue, 12 Sep 2006 13:52:40 -0000 To: commits@apr.apache.org From: rooneg@apache.org X-Mailer: svnmailer-1.1.0 Message-Id: <20060912135241.21FB01A981A@eris.apache.org> X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Author: rooneg Date: Tue Sep 12 06:52:40 2006 New Revision: 442582 URL: http://svn.apache.org/viewvc?view=rev&rev=442582 Log: Don't try to build apr_app.c on MinGW. Submitted by: Matthias Miller Suggested by: jerenkrantz * build/gen-build.py (write_objects): Skip apr_app.c. * CHANGES: Note change. Modified: apr/apr/trunk/CHANGES apr/apr/trunk/build/gen-build.py Modified: apr/apr/trunk/CHANGES URL: http://svn.apache.org/viewvc/apr/apr/trunk/CHANGES?view=diff&rev=442582&r1=442581&r2=442582 ============================================================================== --- apr/apr/trunk/CHANGES (original) +++ apr/apr/trunk/CHANGES Tue Sep 12 06:52:40 2006 @@ -1,5 +1,8 @@ Changes for APR 1.3.0 + *) Don't try to build apr_app.c on MinGW. + [Matthias Miller ] + *) Fix the timeout converstion in apr_pollset with the KQueue backend. [Marco Molteni ] Modified: apr/apr/trunk/build/gen-build.py URL: http://svn.apache.org/viewvc/apr/apr/trunk/build/gen-build.py?view=diff&rev=442582&r1=442581&r2=442582 ============================================================================== --- apr/apr/trunk/build/gen-build.py (original) +++ apr/apr/trunk/build/gen-build.py Tue Sep 12 06:52:40 2006 @@ -146,6 +146,8 @@ objects = [ ] for file in files: + if file[-10:] == '/apr_app.c': + continue assert file[-2:] == '.c' obj = file[:-2] + '.lo' objects.append(obj)