diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2001-06-06 20:49:23 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2001-06-06 20:49:23 +0000 |
commit | 1cade9fc1d0c37f2aeb360371fd40bf341ddc9db (patch) | |
tree | 6f2805711a38f40d07139edd580edc7ca1065ee4 | |
parent | 2b2cdb4d1b47294136bd8993516408cc2e3dc01e (diff) | |
download | perl-1cade9fc1d0c37f2aeb360371fd40bf341ddc9db.tar.gz |
The #10455 exposed that modfl() is fundamentally busted
(as in: dumps core) in pre-5.0 Tru64, so better avoid even
testing it.
p4raw-id: //depot/perl@10457
-rw-r--r-- | hints/dec_osf.sh | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/hints/dec_osf.sh b/hints/dec_osf.sh index ce3a40c77d..9275932659 100644 --- a/hints/dec_osf.sh +++ b/hints/dec_osf.sh @@ -285,6 +285,10 @@ $define|true|[yY]*) d_Gconvert='sprintf((b),"%.*Lg",(n),(x))' ;; esac EOCBU +case "`/usr/sbin/sizer -v`" in +*4.0*) d_modfl=undef ;; # must wait till 5.0 +esac + # # Unset temporary variables no more needed. # |