diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2001-03-13 22:49:05 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2001-03-13 22:49:05 +0000 |
commit | f1ee07ac668ac39e5df3c234affeb8988d55c4aa (patch) | |
tree | 7ed42922007251600dd566c72bcd1e0e7c1b843a | |
parent | 0bee9efe6e3302b0bae554ca99f35705369270f2 (diff) | |
download | perl-f1ee07ac668ac39e5df3c234affeb8988d55c4aa.tar.gz |
Integrate change #9131 from maintperl into mainline.
make the error text look more consistent in hints/hpux.sh
p4raw-link: @9131 on //depot/maint-5.6/perl: 6c443ddcf92f9e25943db40b3d14a2d7dd67aaae
p4raw-id: //depot/perl@9134
p4raw-integrated: from //depot/maint-5.6/perl@9132 'merge in'
hints/hpux.sh (@8687..)
-rw-r--r-- | hints/hpux.sh | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/hints/hpux.sh b/hints/hpux.sh index b01d189a44..19eeae0225 100644 --- a/hints/hpux.sh +++ b/hints/hpux.sh @@ -166,7 +166,6 @@ $define|true|[yY]*) 64-bit compilation is not supported on HP-UX $xxOsRevMajor. You need at least HP-UX 11.0. Cannot continue, aborting. - EOM exit 1 fi @@ -179,7 +178,6 @@ EOM *** You do not seem to have the 64-bit libraries in /lib/pa20_64. *** Most importantly, I cannot find the $libc. *** Cannot continue, aborting. - EOM exit 1 fi @@ -334,6 +332,7 @@ case "$usethreads" in $define|true|[yY]*) if [ "$xxOsRevMajor" -lt 10 ]; then cat <<EOM >&4 + HP-UX $xxOsRevMajor cannot support POSIX threads. Consider upgrading to at least HP-UX 11. Cannot continue, aborting. @@ -376,11 +375,17 @@ EOM if [ $libswanted = "no_threads_available" ]; then cat <<EOM >&4 + In HP-UX 10.X for POSIX threads you need both of the files /usr/include/pthread.h and either /usr/lib/libcma.sl or /usr/lib/libpthread.sl. Either you must upgrade to HP-UX 11 or install a posix thread library: - DCE-CoreTools from HP-UX 10.20 Hardware Extensions 3.0 CD (B3920-13941) or - PTH package from i.e. http://hpux.tn.tudelft.nl/hppd/hpux/alpha.html + + DCE-CoreTools from HP-UX 10.20 Hardware Extensions 3.0 CD (B3920-13941) + +or + + PTH package from http://hpux.tn.tudelft.nl/hppd/hpux/alpha.html + Cannot continue, aborting. EOM exit 1 |