diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2017-10-02 21:59:37 +0300 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2017-10-02 21:59:37 +0300 |
commit | c3398c89851a38d2d6efed5ce1db9f87b5da7136 (patch) | |
tree | 06f5669271f7e49e3299a0d25a54b90289472f98 /extension | |
parent | ce0ac32601517b41cc5c3a1f8e7e4c3e83f903a7 (diff) | |
download | egawk-c3398c89851a38d2d6efed5ce1db9f87b5da7136.tar.gz egawk-c3398c89851a38d2d6efed5ce1db9f87b5da7136.tar.bz2 egawk-c3398c89851a38d2d6efed5ce1db9f87b5da7136.zip |
Update some config.* files.
Diffstat (limited to 'extension')
-rw-r--r-- | extension/build-aux/ChangeLog | 4 | ||||
-rwxr-xr-x | extension/build-aux/config.guess | 18 | ||||
-rwxr-xr-x | extension/build-aux/config.sub | 4 |
3 files changed, 21 insertions, 5 deletions
diff --git a/extension/build-aux/ChangeLog b/extension/build-aux/ChangeLog index ed4af9af..4dbf389e 100644 --- a/extension/build-aux/ChangeLog +++ b/extension/build-aux/ChangeLog @@ -1,3 +1,7 @@ +2017-10-02 Arnold D. Robbins <arnold@skeeve.com> + + * config.guess, config.sub: Updated. + 2017-09-18 Arnold D. Robbins <arnold@skeeve.com> * ar-lib, compile, config.guess, config.sub, depcomp: Updated. diff --git a/extension/build-aux/config.guess b/extension/build-aux/config.guess index 8bd1095f..ba1c1439 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-2017 Free Software Foundation, Inc. -timestamp='2017-09-16' +timestamp='2017-09-26' # 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 @@ -1400,8 +1400,20 @@ EOF exit ;; esac +echo "$0: unable to guess system type" >&2 + +case "${UNAME_MACHINE}:${UNAME_SYSTEM}" in + mips:Linux | mips64:Linux) + # If we got here on MIPS GNU/Linux, output extra information. + cat >&2 <<EOF + +NOTE: MIPS GNU/Linux systems require a C compiler to fully recognize +the system type. Please install a C compiler and try again. +EOF + ;; +esac + cat >&2 <<EOF -$0: unable to guess system type This script (version $timestamp), has failed to recognize the operating system you are using. If your script is old, overwrite *all* @@ -1441,7 +1453,7 @@ EOF exit 1 # Local variables: -# eval: (add-hook 'write-file-hooks 'time-stamp) +# eval: (add-hook 'write-file-functions 'time-stamp) # time-stamp-start: "timestamp='" # time-stamp-format: "%:y-%02m-%02d" # time-stamp-end: "'" diff --git a/extension/build-aux/config.sub b/extension/build-aux/config.sub index 95dc3d07..c6950fd6 100755 --- a/extension/build-aux/config.sub +++ b/extension/build-aux/config.sub @@ -2,7 +2,7 @@ # Configuration validation subroutine script. # Copyright 1992-2017 Free Software Foundation, Inc. -timestamp='2017-09-16' +timestamp='2017-09-26' # 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 @@ -1829,7 +1829,7 @@ echo $basic_machine$os exit # Local variables: -# eval: (add-hook 'write-file-hooks 'time-stamp) +# eval: (add-hook 'write-file-functions 'time-stamp) # time-stamp-start: "timestamp='" # time-stamp-format: "%:y-%02m-%02d" # time-stamp-end: "'" |