summaryrefslogtreecommitdiff
path: root/hints
diff options
context:
space:
mode:
authorH.Merijn Brand <h.m.brand@xs4all.nl>2008-04-29 19:49:35 +0200
committerH.Merijn Brand <h.m.brand@xs4all.nl>2008-06-18 14:42:55 +0000
commitd909c5cbac67256df64d980d1bef90e973c0d139 (patch)
treedad5ffd52d8f9c5a65c9c79656757e2849566e46 /hints
parente1371c03272359534490b29f74831fb15c5393b3 (diff)
downloadperl-d909c5cbac67256df64d980d1bef90e973c0d139.tar.gz
AIX might miss libm
Subject: Re: Closing tickets in RT From: "H.Merijn Brand" <h.m.brand@xs4all.nl> Message-ID: <20080429174935.0cb5763b@pc09.procura.nl> p4raw-id: //depot/perl@34073
Diffstat (limited to 'hints')
-rw-r--r--hints/aix.sh6
1 files changed, 6 insertions, 0 deletions
diff --git a/hints/aix.sh b/hints/aix.sh
index 3cf6436f00..cc253f804c 100644
--- a/hints/aix.sh
+++ b/hints/aix.sh
@@ -80,6 +80,12 @@ EOF
;;
esac
+ s=`lslpp -lc bos.adt.libm >/dev/null`
+if [ $? != 0 ]; then
+ echo "You cannot build perl without the bos.adt.libm package installed" >&4
+ exit
+ fi
+
# uname -m output is too specific and not appropriate here
case "$archname" in
'') archname="$osname" ;;