aboutsummaryrefslogtreecommitdiffstats
path: root/config.guess
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2017-03-20 21:24:51 +0200
committerArnold D. Robbins <arnold@skeeve.com>2017-03-20 21:24:51 +0200
commita9b388f5902d8d06eeb2e742c7cea3c8f49cc2d0 (patch)
tree4e9465ca331406b17e32d2861e7095e935a0b06f /config.guess
parent39c46265139aa8faf87160b30710876bde4c6ba9 (diff)
parentefc7e96c876ccf3b83ab3249eca852a0292ff943 (diff)
downloadegawk-a9b388f5902d8d06eeb2e742c7cea3c8f49cc2d0.tar.gz
egawk-a9b388f5902d8d06eeb2e742c7cea3c8f49cc2d0.tar.bz2
egawk-a9b388f5902d8d06eeb2e742c7cea3c8f49cc2d0.zip
Merge branch 'master' into feature/api-parser
Diffstat (limited to 'config.guess')
-rwxr-xr-xconfig.guess12
1 files changed, 8 insertions, 4 deletions
diff --git a/config.guess b/config.guess
index bbd48b60..69ed3e57 100755
--- a/config.guess
+++ b/config.guess
@@ -2,7 +2,7 @@
# Attempt to guess a canonical system name.
# Copyright 1992-2017 Free Software Foundation, Inc.
-timestamp='2017-01-01'
+timestamp='2017-03-05'
# This file is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License as published by
@@ -837,10 +837,11 @@ EOF
UNAME_PROCESSOR=`/usr/bin/uname -p`
case ${UNAME_PROCESSOR} in
amd64)
- echo x86_64-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;;
- *)
- echo ${UNAME_PROCESSOR}-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;;
+ UNAME_PROCESSOR=x86_64 ;;
+ i386)
+ UNAME_PROCESSOR=i586 ;;
esac
+ echo ${UNAME_PROCESSOR}-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'`
exit ;;
i*:CYGWIN*:*)
echo ${UNAME_MACHINE}-pc-cygwin
@@ -1343,6 +1344,9 @@ EOF
NSR-?:NONSTOP_KERNEL:*:*)
echo nsr-tandem-nsk${UNAME_RELEASE}
exit ;;
+ NSX-?:NONSTOP_KERNEL:*:*)
+ echo nsx-tandem-nsk${UNAME_RELEASE}
+ exit ;;
*:NonStop-UX:*:*)
echo mips-compaq-nonstopux
exit ;;