diff options
author | Sean Davis <dive@ender.com> | 2000-02-24 07:54:24 -0800 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2000-02-24 23:57:49 +0000 |
commit | e520a73ce552ff0fdd3eac95f75c7a550009b637 (patch) | |
tree | dd9fa74997e581f1cec93457d77afe2bb133247e /unixish.h | |
parent | 806e72015c0c16d1c66452a28aa8fd6c6cc967c3 (diff) | |
download | perl-e520a73ce552ff0fdd3eac95f75c7a550009b637.tar.gz |
In FreeBSD disable floating point exception handlers.
As the comment says, this should be done in the hints.
To: "M.J.T. Guy" <mjtg@cus.cam.ac.uk>
cc: perl5-porters@perl.org
Subject: Re: [ID 20000216.004] apparent bug on freebsd systems when calculating large numbers
Message-ID: <Pine.LNX.4.04.10002241552080.448-100000@dragon.ender.com>
p4raw-id: //depot/cfgperl@5248
Diffstat (limited to 'unixish.h')
-rw-r--r-- | unixish.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |