diff options
author | H.Merijn Brand <h.m.brand@xs4all.nl> | 2002-02-27 17:48:35 +0100 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2002-02-27 15:12:36 +0000 |
commit | fa01be49af406aae8c7c0a811e7f6c827fed47df (patch) | |
tree | fbf7cf814955ead01ab76daeb15b9a988e3148c0 /hints/hpux.sh | |
parent | ac6bedeafc71cb65cb2bb8b5b5b55f9049c21101 (diff) | |
download | perl-fa01be49af406aae8c7c0a811e7f6c827fed47df.tar.gz |
Re: Smoke 14870
From: "H.Merijn Brand" <h.m.brand@hccnet.nl>
Message-Id: <20020227163729.1D2B.H.M.BRAND@hccnet.nl>
(with some additional garnish)
p4raw-id: //depot/perl@14895
Diffstat (limited to 'hints/hpux.sh')
-rw-r--r-- | hints/hpux.sh | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/hints/hpux.sh b/hints/hpux.sh index 9e4a01fbc9..f7660e31ef 100644 --- a/hints/hpux.sh +++ b/hints/hpux.sh @@ -409,6 +409,27 @@ EOM if [ -f /usr/lib/libcma.sl ]; then # DCE (from Core OS CD) is installed + # Check if it is pristine, or patched + cmavsn=`what /usr/lib/libcma.sl 2>&1 | grep 1996` + if [ ! -z "$cmavsn" ]; then + cat <<EOM >&4 + +*************************************************************************** + +Perl will support threading through /usr/lib/libcma.sl from +the HP DCE package, but the version found is too old to be +reliable. + +If you are not depending on this specific version of the library, +consider to upgrade using patch PHSS_23672 (read README.hpux) + +*************************************************************************** + +(sleeping for 10 seconds...) +EOM + sleep 10 + fi + # It needs # libcma and OLD_PTHREADS_API. Also # <pthread.h> needs to be #included before any # other includes (in perl.h) |