summaryrefslogtreecommitdiff
path: root/build/config.guess
diff options
context:
space:
mode:
authorrjung <rjung@13f79535-47bb-0310-9956-ffa450edef68>2017-04-16 11:04:05 +0000
committerrjung <rjung@13f79535-47bb-0310-9956-ffa450edef68>2017-04-16 11:04:05 +0000
commit6706be7b2d5ff18570815123313569adabd5fff0 (patch)
treeacbb9587f2ec5ac6811674caf8c6ead92dc7debd /build/config.guess
parent0414e593f3527012540dfdcd6a7df70d83444298 (diff)
downloadlibapr-6706be7b2d5ff18570815123313569adabd5fff0.tar.gz
Update config.guess and config.sub from
http://git.savannah.gnu.org/cgit/config.git. git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@1791598 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'build/config.guess')
-rwxr-xr-xbuild/config.guess12
1 files changed, 8 insertions, 4 deletions
diff --git a/build/config.guess b/build/config.guess
index bbd48b60e..69ed3e573 100755
--- a/build/config.guess
+++ b/build/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 ;;