From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 20691 invoked by alias); 7 Sep 2010 16:34:50 -0000 Received: (qmail 20634 invoked by uid 22791); 7 Sep 2010 16:34:50 -0000 X-SWARE-Spam-Status: No, hits=-2.0 required=5.0 tests=AWL,BAYES_00,DKIM_SIGNED,DKIM_VALID,FREEMAIL_FROM,RCVD_IN_DNSWL_NONE X-Spam-Check-By: sourceware.org Received: from mail-qy0-f175.google.com (HELO mail-qy0-f175.google.com) (209.85.216.175) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Tue, 07 Sep 2010 16:34:43 +0000 Received: by qyk31 with SMTP id 31so3861495qyk.20 for ; Tue, 07 Sep 2010 09:34:41 -0700 (PDT) Received: by 10.224.27.210 with SMTP id j18mr1039024qac.164.1283877280648; Tue, 07 Sep 2010 09:34:40 -0700 (PDT) Received: from yakj.usersys.redhat.com (nat-pool-brq-t.redhat.com [209.132.186.34]) by mx.google.com with ESMTPS id t1sm7210469qcs.9.2010.09.07.09.34.38 (version=TLSv1/SSLv3 cipher=RC4-MD5); Tue, 07 Sep 2010 09:34:39 -0700 (PDT) Message-ID: <4C86699A.7000101@gnu.org> Date: Tue, 07 Sep 2010 17:12:00 -0000 From: Paolo Bonzini User-Agent: Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.1.10) Gecko/20100621 Fedora/3.0.5-1.fc13 Lightning/1.0b2pre Mnenhy/0.8.3 Thunderbird/3.0.5 MIME-Version: 1.0 To: JonY CC: "H.J. Lu" , Kai Tietz , Dave Korn , Gcc Patch List Subject: Re: [PATCH] Allow decimal floats for mingw-w64 References: <4C73D99C.5050205@users.sourceforge.net> <4C8040D2.90002@gmail.com> <4C803F00.5080500@users.sourceforge.net> <4C865A75.8050707@users.sourceforge.net> <4C8660B6.90704@users.sourceforge.net> <4C866458.50401@users.sourceforge.net> In-Reply-To: <4C866458.50401@users.sourceforge.net> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org X-SW-Source: 2010-09/txt/msg00588.txt.bz2 On 09/07/2010 06:12 PM, JonY wrote: > Looks like most of the changes are in, the only parts needed changing was: > > Index: config/dfp.m4 > =================================================================== > --- config/dfp.m4 (revision 163959) > +++ config/dfp.m4 (working copy) > @@ -20,7 +20,9 @@ > ], > [ > case $1 in > - powerpc*-*-linux* | i?86*-*-linux* | x86_64*-*-linux* | s390*-*-linux*) > + powerpc*-*-linux* | i?86*-*-linux* | x86_64*-*-linux* | s390*-*-linux* | \ > + i?86*-*-mingw* | x86_64*-*-mingw* |\ > + i?86*-*-cygwin* ) > enable_decimal_float=yes > ;; > *) > This looks fine, thanks. Dave/Kai? Paolo