From: Sean Davis Date: Thu, 24 Feb 2000 15:54:24 +0000 (-0800) Subject: In FreeBSD disable floating point exception handlers. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=e520a73ce552ff0fdd3eac95f75c7a550009b637;p=p5sagit%2Fp5-mst-13.2.git In FreeBSD disable floating point exception handlers. As the comment says, this should be done in the hints. To: "M.J.T. Guy" cc: perl5-porters@perl.org Subject: Re: [ID 20000216.004] apparent bug on freebsd systems when calculating large numbers Message-ID: p4raw-id: //depot/cfgperl@5248 --- diff --git a/unixish.h b/unixish.h index 492b24a..c9a5495 100644 --- a/unixish.h +++ b/unixish.h @@ -116,7 +116,7 @@ /* these should be set in a hint file, not here */ #ifndef PERL_SYS_INIT -#ifdef PERL_SCO5 +#if defined(PERL_SCO5) || defined(__FreeBSD__) # define PERL_SYS_INIT(c,v) fpsetmask(0); MALLOC_INIT #else # ifdef POSIX_BC