#!/bin/sh
#
# getMotifTearOffDefn - Return motif tear off define statement if allowed
#


MOTIF_RELEASE=`getMotifRelease`


# Motif tear off menus were introduced in 1.2, the following should work
# although has not been thoroughly tested.

if [ "$MOTIF_RELEASE" -gt "1001" ]
then
    echo "MOTIF_OPTIONS=-DTEAR_OFFS" 
fi

