CRAY TS does not have -h rounddiv, from Keith Thompson.
Jarkko Hietaniemi [Mon, 1 Apr 2002 15:38:56 +0000 (15:38 +0000)]
p4raw-id: //depot/perl@15660

hints/unicos.sh

index 4290bd5..7f814a2 100644 (file)
@@ -10,7 +10,10 @@ esac
 # Let's not do that. --jhi
 ccflags="$ccflags -h matherror=errno" 
 # Give int((2/3)*3) a chance to be 2, not 1. --jhi
-ccflags="$ccflags -h rounddiv"
+case "`uname -m`" in
+"CRAY TS")     ;; # -h rounddiv not available here
+*)             ccflags="$ccflags -h rounddiv" ;;
+esac
 # Avoid an optimizer bug where a volatile variables
 # isn't correctly saved and restored --Mark P. Lutz 
 pp_ctl_cflags='ccflags="$ccflags -h scalar0 -h vector0"'