#!/bin/sh
#

if [ ! -d "/usr/X11R6" ]
then
  echo "Fatal Error: This application requires the X11 include files and"
  echo "             libraries be located in /usr/X11R6. If they are elsewhere"
  echo "             then try adding a symbolic link to the appropriate"
  echo "             directory. Something like the following:"
  echo
  echo "      ln -s /opt/X11R6 /usr/X11R6"
  echo
  echo " You will need to be root to accomplish this feat."
  exit 1
fi
