home *** CD-ROM | disk | FTP | other *** search
- #!/bin/sh
- #
- # Copyright (C) 1994 NeXT Computer, Inc.
- # All Rights Reserved
- #
-
- UNAME=uname
- ARCH=unknown
-
- #if [ -f $UNAME ]; then
- case `$UNAME` in
- OSF1)
- ARCH=alpha-nextpdo-osf3.0
- ;;
-
- HP-UX)
- ARCH=hppa1.1-nextpdo-hpux
- ;;
-
- SunOS)
- VER=`uname -r | sed 's/\..*//'`;
- if [ $VER = "5" ]; then
- ARCH=sparc-nextpdo-solaris2
- else
- ARCH=sparc-nextpdo-sunos4.1.3
- fi
- ;;
- Windows_NT)
- ARCH=i386-nextpdo-winnt3.5
- ;;
- esac
- #fi
-
- echo $ARCH
- exit 0
-