From: H.Merijn Brand Date: Fri, 12 Mar 2010 07:43:24 +0000 (+0100) Subject: Tighten the ropes on sGMTIME_min for HP-UX 11.00 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=c4af86f5b3084bfb0d5b6e7a06b8875b723ab49e;p=p5sagit%2Fp5-mst-13.2.git 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. --- diff --git a/hints/hpux.sh b/hints/hpux.sh index cb1fbf8..bdfbec1 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