forked from emacs-mirror/emacs
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This incorporates: 2017-09-16 manywarnings: port to GCC on 64-bit MS-Windows 2017-09-13 all: Replace many more http URLs by https URLs * build-aux/config.guess, build-aux/config.sub: * build-aux/gitlog-to-changelog, doc/misc/texinfo.tex: * lib/allocator.h, lib/count-leading-zeros.h: * lib/count-trailing-zeros.h, lib/dup2.c, lib/filevercmp.c: * lib/fstatat.c, lib/fsync.c, lib/ftoastr.c, lib/ftoastr.h: * lib/intprops.h, lib/signal.in.h, lib/stdio-impl.h, lib/stdio.in.h: * lib/unistd.in.h, lib/utimens.c, m4/alloca.m4, m4/extern-inline.m4: * m4/fstatat.m4, m4/gnulib-common.m4, m4/manywarnings.m4: * m4/std-gnu11.m4, m4/sys_types_h.m4, m4/vararrays.m4: Copy from Gnulib. * lib/gnulib.mk.in: Regenerate.
- Loading branch information
Showing
28 changed files
with
79 additions
and
99 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
# Attempt to guess a canonical system name. | ||
# Copyright 1992-2017 Free Software Foundation, Inc. | ||
|
||
timestamp='2017-08-08' | ||
timestamp='2017-09-16' | ||
|
||
# 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 | ||
|
@@ -15,7 +15,7 @@ timestamp='2017-08-08' | |
# General Public License for more details. | ||
# | ||
# You should have received a copy of the GNU General Public License | ||
# along with this program; if not, see <http://www.gnu.org/licenses/>. | ||
# along with this program; if not, see <https://www.gnu.org/licenses/>. | ||
# | ||
# As a special exception to the GNU General Public License, if you | ||
# distribute this file as part of a program that contains a | ||
|
@@ -27,7 +27,7 @@ timestamp='2017-08-08' | |
# Originally written by Per Bothner; maintained since 2000 by Ben Elliston. | ||
# | ||
# You can get the latest version of this script from: | ||
# http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.guess | ||
# https://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.guess | ||
# | ||
# Please send patches to <[email protected]>. | ||
|
||
|
@@ -318,15 +318,6 @@ case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in | |
exitcode=$? | ||
trap '' 0 | ||
exit $exitcode ;; | ||
Alpha\ *:Windows_NT*:*) | ||
# How do we know it's Interix rather than the generic POSIX subsystem? | ||
# Should we change UNAME_MACHINE based on the output of uname instead | ||
# of the specific Alpha model? | ||
echo alpha-pc-interix | ||
exit ;; | ||
21064:Windows_NT:50:3) | ||
echo alpha-dec-winnt3.5 | ||
exit ;; | ||
Amiga*:UNIX_System_V:4.0:*) | ||
echo m68k-unknown-sysv4 | ||
exit ;; | ||
|
@@ -858,10 +849,6 @@ EOF | |
*:MSYS*:*) | ||
echo ${UNAME_MACHINE}-pc-msys | ||
exit ;; | ||
i*:windows32*:*) | ||
# uname -m includes "-pc" on this system. | ||
echo ${UNAME_MACHINE}-mingw32 | ||
exit ;; | ||
i*:PW*:*) | ||
echo ${UNAME_MACHINE}-pc-pw32 | ||
exit ;; | ||
|
@@ -877,27 +864,12 @@ EOF | |
echo ia64-unknown-interix${UNAME_RELEASE} | ||
exit ;; | ||
esac ;; | ||
[345]86:Windows_95:* | [345]86:Windows_98:* | [345]86:Windows_NT:*) | ||
echo i${UNAME_MACHINE}-pc-mks | ||
exit ;; | ||
8664:Windows_NT:*) | ||
echo x86_64-pc-mks | ||
exit ;; | ||
i*:Windows_NT*:* | Pentium*:Windows_NT*:*) | ||
# How do we know it's Interix rather than the generic POSIX subsystem? | ||
# It also conflicts with pre-2.0 versions of AT&T UWIN. Should we | ||
# UNAME_MACHINE based on the output of uname instead of i386? | ||
echo i586-pc-interix | ||
exit ;; | ||
i*:UWIN*:*) | ||
echo ${UNAME_MACHINE}-pc-uwin | ||
exit ;; | ||
amd64:CYGWIN*:*:* | x86_64:CYGWIN*:*:*) | ||
echo x86_64-unknown-cygwin | ||
exit ;; | ||
p*:CYGWIN*:*) | ||
echo powerpcle-unknown-cygwin | ||
exit ;; | ||
prep*:SunOS:5.*:*) | ||
echo powerpcle-unknown-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` | ||
exit ;; | ||
|
@@ -1435,9 +1407,9 @@ This script (version $timestamp), has failed to recognize the | |
operating system you are using. If your script is old, overwrite *all* | ||
copies of config.guess and config.sub with the latest versions from: | ||
http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.guess | ||
https://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.guess | ||
and | ||
http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.sub | ||
https://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.sub | ||
If $0 has already been updated, send the following data and any | ||
information you think might be pertinent to [email protected] to | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.