Return-Path: Delivered-To: apmail-stdcxx-commits-archive@www.apache.org Received: (qmail 73682 invoked from network); 1 Apr 2008 22:35:51 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 1 Apr 2008 22:35:51 -0000 Received: (qmail 95357 invoked by uid 500); 1 Apr 2008 22:35:51 -0000 Delivered-To: apmail-stdcxx-commits-archive@stdcxx.apache.org Received: (qmail 95338 invoked by uid 500); 1 Apr 2008 22:35:51 -0000 Mailing-List: contact commits-help@stdcxx.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@stdcxx.apache.org Delivered-To: mailing list commits@stdcxx.apache.org Received: (qmail 95326 invoked by uid 99); 1 Apr 2008 22:35:50 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 01 Apr 2008 15:35:50 -0700 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.3] (HELO eris.apache.org) (140.211.11.3) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 01 Apr 2008 22:35:18 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 3D9011A9832; Tue, 1 Apr 2008 15:35:26 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r643630 - /stdcxx/trunk/etc/config/src/float_defs.h Date: Tue, 01 Apr 2008 22:35:26 -0000 To: commits@stdcxx.apache.org From: elemings@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20080401223530.3D9011A9832@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: elemings Date: Tue Apr 1 15:35:11 2008 New Revision: 643630 URL: http://svn.apache.org/viewvc?rev=643630&view=rev Log: 2008-04-01 Eric Lemings STDCXX-### * file (function), ...: Summary of change. Modified: stdcxx/trunk/etc/config/src/float_defs.h Modified: stdcxx/trunk/etc/config/src/float_defs.h URL: http://svn.apache.org/viewvc/stdcxx/trunk/etc/config/src/float_defs.h?rev=643630&r1=643629&r2=643630&view=diff ============================================================================== --- stdcxx/trunk/etc/config/src/float_defs.h (original) +++ stdcxx/trunk/etc/config/src/float_defs.h Tue Apr 1 15:35:11 2008 @@ -27,7 +27,11 @@ #ifndef _RWSTD_NO_FLOAT_H # include -# if defined (__EDG__) && !defined (__INTEL_COMPILER) +# if defined (__EDG__) \ + && !defined (__DECCXX) \ + && !defined (__HP_aCC) \ + && !defined (__INTEL_COMPILER) \ + && !defined (_SGI_COMPILER_VERSION) // define gcc 4 intrinsics otherwise not recognized // by the front end # define __FLT_DIG__ 6 @@ -64,7 +68,7 @@ // Linux value # define _RWSTD_FLT_ROUNDS 1 /* round to nearest */ -# if __GNUC__ < 4 +# if defined (__GNUC__) && __GNUC__ < 4 // prevent the propriterary gcc __extension__ from // throwing the vanilla EDG demo for a loop