Initial import of the CDE 2.1.30 sources from the Open Group.

This commit is contained in:
Peter Howkins
2012-03-10 18:21:40 +00:00
commit 83b6996daa
18978 changed files with 3945623 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
#! /bin/ksh
# This script checks to see if the system release is OK and the compiler
# is OK on hpux.
RELEASE=`uname -r|fgrep '9.05' 2>/dev/null`
if [ ! "$RELEASE" ];then
echo " System Release Incorrect. uname -r should be 9.05"
echo " system is instead `uname -r`"
echo ""
fi
COMPILER=`what /bin/c89 |fgrep '9.68' 2>/dev/null`
if [ ! "$COMPILER" ];then
echo " Compiler version is Incorrect. It should be 9.68"
echo " Instead it is:"
what /bin/c89
echo ""
fi