aboutsummaryrefslogtreecommitdiffstats
path: root/config.guess
diff options
context:
space:
mode:
authorRichard Kenner <[email protected]>1995-06-22 23:01:20 +0000
committerRichard Kenner <[email protected]>1995-06-22 23:01:20 +0000
commit6276efb0a6d281815fc469a267fcc42419a0ebe4 (patch)
treef4aa484793f4621ebe7223124594a4d9faef7f57 /config.guess
parent3ddd2b4d22ab8c750b29e02e6410a7ddd4381f15 (diff)
(i386-sequent-ptx): Properly get version number.
Diffstat (limited to 'config.guess')
-rwxr-xr-xconfig.guess17
1 files changed, 16 insertions, 1 deletions
diff --git a/config.guess b/config.guess
index 478c406074..6b815db7d1 100755
--- a/config.guess
+++ b/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)