Change 34073 by [EMAIL PROTECTED] on 2008/06/18 14:42:55
AIX might miss libm
Subject: Re: Closing tickets in RT
From: "H.Merijn Brand" <[EMAIL PROTECTED]>
Date: Tue, 29 Apr 2008 17:49:35 +0200
Message-ID: <[EMAIL PROTECTED]>
Affected files ...
... //depot/perl/hints/aix.sh#109 edit
Differences ...
==== //depot/perl/hints/aix.sh#109 (text) ====
Index: perl/hints/aix.sh
--- perl/hints/aix.sh#108~33988~ 2008-06-02 06:52:39.000000000 -0700
+++ perl/hints/aix.sh 2008-06-18 07:42:55.000000000 -0700
@@ -80,6 +80,12 @@
;;
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" ;;
End of Patch.