#!/bin/sh
# $Id: test-framemaker,v 1.2 2001/07/25 20:01:11 rbasch Exp $

. /mit/mimeutils/share/scripts/utils.sh

if [ -z "$DISPLAY" ]; then
  maybe_becho "No X display available."
  exit 1
fi

case `/bin/athena/machtype` in
  sgi|sun4)
    ;;
  *)
    maybe_becho "Cannot display FrameMaker document on this platform."
    exit 1
    ;;
esac

exit 0
