#
# ostype: os dependent configuration
#

REVISION_ID='@(#)ostype	3.4 (motonori/WIDE) 2/26/94'

if [ "$REVISION_ID_LIST" ]
then
        REVISION_ID_LIST="$REVISION_ID_LIST\\
# $REVISION_ID"
else
        REVISION_ID_LIST="# $REVISION_ID"
fi

#|# OS type (choose a file name in ostype directory)
#|#OS_TYPE=

OSDIR=$MASTERDIR/OSTYPE

if [ "$OS_TYPE" ]
then
	if [ -f $OSDIR/$OS_TYPE ]
	then
		. $OSDIR/$OS_TYPE

REVISION_ID_LIST="$REVISION_ID_LIST\\
# $REVISION_ID"

	else
		echo "ostype: $OS_TYPE not found." 1>&2
	fi
else
		echo "ostype: default configuration is used." 1>&2
fi
