From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 19435 invoked by alias); 1 May 2011 13:41:06 -0000 Received: (qmail 19422 invoked by uid 22791); 1 May 2011 13:41:05 -0000 X-SWARE-Spam-Status: No, hits=-0.6 required=5.0 tests=AWL,BAYES_50,RCVD_IN_DNSWL_LOW X-Spam-Check-By: sourceware.org Received: from relay.ptn-ipout01.plus.net (HELO relay.ptn-ipout01.plus.net) (212.159.7.35) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Sun, 01 May 2011 13:40:49 +0000 X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: AlkIAJxhvU3Unw4T/2dsb2JhbACYU41Id6V4nGeGAASTEooK Received: from outmx04.plus.net ([212.159.14.19]) by relay.ptn-ipout01.plus.net with ESMTP; 01 May 2011 14:40:48 +0100 Received: from [212.159.60.66] (helo=MobileSlave) by outmx04.plus.net with smtp (Exim) id 1QGWtD-0002uH-LL for gsl-discuss@sourceware.org; Sun, 01 May 2011 14:40:47 +0100 Message-ID: <0D8EB1B04D804720822C2911C9312228@MobileSlave> From: "Brian Gladman" To: Subject: GSL 1.14.91 Test Release Date: Sun, 01 May 2011 13:41:00 -0000 MIME-Version: 1.0 Content-Type: text/plain; format=flowed; charset="Windows-1252"; reply-type=original Content-Transfer-Encoding: 7bit Mailing-List: contact gsl-discuss-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gsl-discuss-owner@sourceware.org X-SW-Source: 2011-q2/txt/msg00010.txt.bz2 Thank you for solving the C99 issues. I have one minor issue with finite(x) on Microsoft VC++. I had thought that GSL uses finite(x) throughout for this internally but defines it as isfinite(x) when this is available. Otherwise finite(x) is mapped to gsl_finite(x) to allow an architecture specific implementation to be provided. However cquad.c uses isfinite(x) directly and hence bypasses the alternative version when isfinite is not available (which it isn't in VC++) and causes a linking failure. I can cope with this but I am wondering whether I have to cope with both finite(x) and isfinite(x) use within GSL. best regards, Brian Gladman