From 3e525997d7bff3bf668a128de616b1d51a06a4de Mon Sep 17 00:00:00 2001 From: Richard Kenner Date: Thu, 22 Jun 1995 19:01:20 -0400 Subject: [PATCH] (i386-sequent-ptx): Properly get version number. From-SVN: r10030 --- gcc/config.guess | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) 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 < +# include +#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) -- 2.30.2