diff options
author | Albert Cheng <acheng@hdfgroup.org> | 1998-01-28 20:52:47 (GMT) |
---|---|---|
committer | Albert Cheng <acheng@hdfgroup.org> | 1998-01-28 20:52:47 (GMT) |
commit | 8032966d866672acf583fec2ef4b36112acb8067 (patch) | |
tree | 94a3c4e87118d780b6c28c970b99f4881673edcb | |
parent | 037b106cf936e48ae69929a78428bb65682068bc (diff) | |
download | hdf5-8032966d866672acf583fec2ef4b36112acb8067.zip hdf5-8032966d866672acf583fec2ef4b36112acb8067.tar.gz hdf5-8032966d866672acf583fec2ef4b36112acb8067.tar.bz2 |
[svn-r191] Added configuration for IRIX64 OS. Distinguish it from plain
irix.
-rwxr-xr-x | bin/config.guess | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/bin/config.guess b/bin/config.guess index 2ff0eba..8665ddf 100755 --- a/bin/config.guess +++ b/bin/config.guess @@ -150,6 +150,9 @@ case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in Tek43[0-9][0-9]:UTek:*:*) # Tektronix 4300 system running UTek (BSD) echo m68k-tektronix-bsd exit 0 ;; + *:IRIX64:*:*) + echo mips-sgi-irix64 + exit 0 ;; *:IRIX*:*:*) echo mips-sgi-irix`echo ${UNAME_RELEASE}|sed -e 's/-/_/g'` exit 0 ;; |