hack to check for sco

This commit is contained in:
Todd C. Miller
1995-07-19 21:29:49 +00:00
parent 9c631578e2
commit 1f0c48184e

5
aclocal.m4 vendored
View File

@@ -229,7 +229,10 @@ if test -n "$UNAMEPROG"; then
if test "$OS" = `$UNAMEPROG -n`; then
# evil hack for ISC unix (svr4)
if test "`$UNAMEPROG -m`" = "i386"; then
OS="isc"
case "`$UNAMEPROG -X`" in
"/"* | "uname"*) OS="isc" ;;
*) OS="sco" ;;
esac
else
OS=`$UNAMEPROG -v`
fi