diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2018-02-25 19:03:51 +0200 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2018-02-25 19:03:51 +0200 |
commit | cd692e573effc572a416cec9febbbb7921cfa4a2 (patch) | |
tree | ae451943e03d23940d007ffc12fe6e6202420685 /extension/build-aux | |
parent | 6424e3db82df8947498e06fb021b94a82a9ac3c3 (diff) | |
download | egawk-cd692e573effc572a416cec9febbbb7921cfa4a2.tar.gz egawk-cd692e573effc572a416cec9febbbb7921cfa4a2.tar.bz2 egawk-cd692e573effc572a416cec9febbbb7921cfa4a2.zip |
Update config.guess and config.sub.
Diffstat (limited to 'extension/build-aux')
-rw-r--r-- | extension/build-aux/ChangeLog | 4 | ||||
-rwxr-xr-x | extension/build-aux/config.guess | 8 | ||||
-rwxr-xr-x | extension/build-aux/config.sub | 5 |
3 files changed, 13 insertions, 4 deletions
diff --git a/extension/build-aux/ChangeLog b/extension/build-aux/ChangeLog index 84a51879..625ba0da 100644 --- a/extension/build-aux/ChangeLog +++ b/extension/build-aux/ChangeLog @@ -1,3 +1,7 @@ +2018-02-25 Arnold D. Robbins <arnold@skeeve.com> + + * config.guess, config.sub: Updated. + 2018-01-28 Arnold D. Robbins <arnold@skeeve.com> * config.guess, config.sub: Updated. diff --git a/extension/build-aux/config.guess b/extension/build-aux/config.guess index 9baaa270..f50dcdb6 100755 --- a/extension/build-aux/config.guess +++ b/extension/build-aux/config.guess @@ -2,7 +2,7 @@ # Attempt to guess a canonical system name. # Copyright 1992-2018 Free Software Foundation, Inc. -timestamp='2018-01-26' +timestamp='2018-02-24' # 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 @@ -1046,7 +1046,11 @@ EOF echo "$UNAME_MACHINE"-dec-linux-"$LIBC" exit ;; x86_64:Linux:*:*) - echo "$UNAME_MACHINE"-pc-linux-"$LIBC" + if objdump -f /bin/sh | grep -q elf32-x86-64; then + echo "$UNAME_MACHINE"-pc-linux-"$LIBC"x32 + else + echo "$UNAME_MACHINE"-pc-linux-"$LIBC" + fi exit ;; xtensa*:Linux:*:*) echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" diff --git a/extension/build-aux/config.sub b/extension/build-aux/config.sub index 818892c1..1d8e98bc 100755 --- a/extension/build-aux/config.sub +++ b/extension/build-aux/config.sub @@ -2,7 +2,7 @@ # Configuration validation subroutine script. # Copyright 1992-2018 Free Software Foundation, Inc. -timestamp='2018-01-15' +timestamp='2018-02-22' # 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 @@ -1389,7 +1389,8 @@ case $os in | -morphos* | -superux* | -rtmk* | -windiss* \ | -powermax* | -dnix* | -nx6 | -nx7 | -sei* | -dragonfly* \ | -skyos* | -haiku* | -rdos* | -toppers* | -drops* | -es* \ - | -onefs* | -tirtos* | -phoenix* | -fuchsia* | -redox* | -bme*) + | -onefs* | -tirtos* | -phoenix* | -fuchsia* | -redox* | -bme* \ + | -midnightbsd*) # Remember, each alternative MUST END IN *, to match a version number. ;; -qnx*) |