summaryrefslogtreecommitdiff
path: root/hints
diff options
context:
space:
mode:
authorSteve Peters <steve@fisharerojo.org>2005-12-23 00:28:54 +0000
committerSteve Peters <steve@fisharerojo.org>2005-12-23 00:28:54 +0000
commitb91b8403bb67d1c94fd711a2cfe83ea91f52e170 (patch)
tree5ff9f758dbd5c95f7c3e848e0c00208b6554dcaa /hints
parent0b6f4f5cb8bbeb6c5d1eb714dbf6cdf58c5516d7 (diff)
downloadperl-b91b8403bb67d1c94fd711a2cfe83ea91f52e170.tar.gz
ctime_r() and asctime_r() seem to have some problems before HP-UX 11.
p4raw-id: //depot/perl@26462
Diffstat (limited to 'hints')
-rw-r--r--hints/hpux.sh8
1 files changed, 8 insertions, 0 deletions
diff --git a/hints/hpux.sh b/hints/hpux.sh
index 3ce1d85805..11b34494d7 100644
--- a/hints/hpux.sh
+++ b/hints/hpux.sh
@@ -667,6 +667,14 @@ case "$usemallocwrap" in
'') usemallocwrap='define' ;;
esac
+# ctime_r() and asctime_r() seem to have issues for versions before
+# HP-UX 11
+if [ $xxOsRevMajor -lt 11 ]; then
+ d_ctime_r="$undef"
+ d_asctime_r="$undef"
+ fi
+
+
# fpclassify() is a macro, the library call is Fpclassify
# Similarly with the others below.
d_fpclassify='define'