aboutsummaryrefslogtreecommitdiff
path: root/depends/config.guess
diff options
context:
space:
mode:
authorfanquake <fanquake@gmail.com>2017-05-02 06:37:16 +0800
committerfanquake <fanquake@gmail.com>2017-05-03 18:19:07 +0800
commit7d92c6f3bc12004f5b11219fd22a9367b537ff6a (patch)
tree5cf600a9c3661b3d7e60cb6d539669d5f1a4dcd5 /depends/config.guess
parent22d870016eb630560c0bd6ba911b764ef46fefc9 (diff)
downloadbitcoin-7d92c6f3bc12004f5b11219fd22a9367b537ff6a.tar.xz
[depends] Latest config.guess and config.sub
Diffstat (limited to 'depends/config.guess')
-rwxr-xr-xdepends/config.guess12
1 files changed, 8 insertions, 4 deletions
diff --git a/depends/config.guess b/depends/config.guess
index bbd48b60e8..69ed3e573b 100755
--- a/depends/config.guess
+++ b/depends/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 ;;