summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2000-03-21 14:34:25 +0000
committerJarkko Hietaniemi <jhi@iki.fi>2000-03-21 14:34:25 +0000
commit8e5bcf6b194fe7894885ca56533773fd72367367 (patch)
tree95e14f9e8fac55c760a2732b44d7542f1ee37885
parentaafd44da986ed62cc4fb348147422b5494eeae45 (diff)
downloadperl-8e5bcf6b194fe7894885ca56533773fd72367367.tar.gz
Be more lenient in the case libsunmath cannot be found.
p4raw-id: //depot/cfgperl@5858
-rw-r--r--hints/solaris_2.sh12
1 files changed, 7 insertions, 5 deletions
diff --git a/hints/solaris_2.sh b/hints/solaris_2.sh
index d6556d263f..df61932db8 100644
--- a/hints/solaris_2.sh
+++ b/hints/solaris_2.sh
@@ -470,15 +470,17 @@ case "$uselongdouble-$uselongdouble_done" in
case "$ccisworkshop" in
'') cat <<EOM
-I do not see the Sun Workshop compiler; therefore there is no libsunmath.so;
-therefore I cannot do long doubles, sorry. Cannot continue, aborting.
+I do not see the Sun Workshop compiler; therefore there is no
+libsunmath.so; therefore I cannot do long doubles, sorry.
+I'm disabling the use of long doubles.
EOM
- exit 1
+ uselongdouble="$undef"
+ ;;
+ *) libswanted="$libswanted sunmath"
+ loclibpth="$loclibpth /opt/SUNWspro/lib"
;;
esac
- libswanted="$libswanted sunmath"
- loclibpth="$loclibpth /opt/SUNWspro/lib"
uselongdouble_done=yes
;;
esac