#!/bin/sh
DEFS=""
case "`uname -r`" in
 4.*) DEFS="-DSOLARIS_1";;
 5.*) DEFS="-DSOLARIS_2";;
 *)   DEFS="";;
esac
echo $DEFS
exit 0
