#!/bin/sh
#
# "@(#)checkinstall       1.1     97/06/06 SMI"
#

OS=`uname -r | cut -d. -f1`
OSVER=`uname -r | cut -d. -f2`

if [ $OS -ne 5 -o $OSVER -lt 5 ] 
then
	exit 1
fi

# dont install the SUNWfns package if the OS is Solaris 2.6
if [ $OSVER -eq 6 ]
then
	exit 3
fi
