diff options
author | H.Merijn Brand <h.m.brand@xs4all.nl> | 2010-03-12 08:43:24 +0100 |
---|---|---|
committer | H.Merijn Brand <h.m.brand@xs4all.nl> | 2010-03-12 08:43:24 +0100 |
commit | c4af86f5b3084bfb0d5b6e7a06b8875b723ab49e (patch) | |
tree | 9f1355d482db5d991dbb1096cdf19b24d11d1452 /hints/hpux.sh | |
parent | f83704b301c5cfe316ce4e0465c20f00d9e404d5 (diff) | |
download | perl-c4af86f5b3084bfb0d5b6e7a06b8875b723ab49e.tar.gz |
Tighten the ropes on sGMTIME_min for HP-UX 11.00
The original long-running test had a tighter limit for
sGMTIME_min and sLOCALTIME_min than the 2**47-1 limit
that was now hardcoded. Take the safe route.
Diffstat (limited to 'hints/hpux.sh')
-rw-r--r-- | hints/hpux.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/hints/hpux.sh b/hints/hpux.sh index cb1fbf8370..bdfbec1cac 100644 --- a/hints/hpux.sh +++ b/hints/hpux.sh @@ -237,9 +237,9 @@ EOM # HP-UX 11.00 uses only 48 bits internally in 64bit mode, not 64 # force min/max to 2**47-1 sGMTIME_max=140737488355327 - sGMTIME_min=-140737488355327 + sGMTIME_min=-62167219200 sLOCALTIME_max=140737488355327 - sLOCALTIME_min=-140737488355327 + sLOCALTIME_min=-62167219200 fi # Set libc and the library paths |