In perl.git, the branch blead has been updated <http://perl5.git.perl.org/perl.git/commitdiff/f88c7f62044e3b2357ce5c704f70862516afbbae?hp=361e750a9a6d18a3c0a16e6334f990d06078e604>
- Log ----------------------------------------------------------------- commit f88c7f62044e3b2357ce5c704f70862516afbbae Author: Craig A. Berry <[email protected]> Date: Sat Sep 13 17:24:20 2014 -0500 Disable isfinite on VMS. While the macro exists (in fp.h, not math.h) and it does work on ordinary doubles, it does not work on long doubles, which is the only use of it so far in the Perl core. In Perl_sv_vcatpvfn_flags, isfinite is testing a long double even when not configured with long doubles (assuming long doubles are at least available). So the better part of valor is to say we don't have it and use the fallback. Gets t/op/infnan.t #13 passing. ----------------------------------------------------------------------- Summary of changes: configure.com | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.com b/configure.com index 4707c27..5d73245 100644 --- a/configure.com +++ b/configure.com @@ -6078,7 +6078,7 @@ $ WC "d_ipv6_mreq='define'" $ WC "d_ipv6_mreq_source='undef'" $ WC "d_isascii='define'" $ WC "d_isblank='undef'" -$ WC "d_isfinite='define'" +$ WC "d_isfinite='undef'" $ WC "d_isfinitel='undef'" $ WC "d_isinf='undef'" $ WC "d_isinfl='undef'" -- Perl5 Master Repository
