diff options
author | kenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4> | 1995-06-22 23:01:20 +0000 |
---|---|---|
committer | kenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4> | 1995-06-22 23:01:20 +0000 |
commit | e8bdab72765cd9374d7a3eb60ef0a6f61562d573 (patch) | |
tree | c09882052696cbdff0af1c47d5c01c5e382cd427 /gcc | |
parent | 25e4d68da32e42341d17ba8817a307f3ace4e38e (diff) | |
download | ppe42-gcc-e8bdab72765cd9374d7a3eb60ef0a6f61562d573.tar.gz ppe42-gcc-e8bdab72765cd9374d7a3eb60ef0a6f61562d573.zip |
(i386-sequent-ptx): Properly get version number.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@10030 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc')
-rwxr-xr-x | gcc/config.guess | 17 |
1 files changed, 16 insertions, 1 deletions
diff --git a/gcc/config.guess b/gcc/config.guess index 478c4060742..6b815db7d1d 100755 --- a/gcc/config.guess +++ b/gcc/config.guess @@ -422,6 +422,10 @@ esac #echo "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" 1>&2 cat >dummy.c <<EOF +#ifdef _SEQUENT_ +# include <sys/types.h> +# include <sys/utsname.h> +#endif main () { #if defined (sony) @@ -485,7 +489,18 @@ main () #endif #if defined (_SEQUENT_) - printf ("i386-sequent-ptx\n"); exit (0); + struct utsname un; + + uname(&un); + + if (strncmp(un.version, "V2", 2) == 0) { + printf ("i386-sequent-ptx2\n"); exit (0); + } + if (strncmp(un.version, "V1", 2) == 0) { /* XXX is V1 correct? */ + printf ("i386-sequent-ptx1\n"); exit (0); + } + printf ("i386-sequent-ptx\n"); exit (0); + #endif #if defined (vax) |