aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xbuild-aux/config.guess5
-rwxr-xr-xbuild-aux/config.sub5
-rw-r--r--lib/memrchr.c2
-rw-r--r--m4/gnulib-comp.m43
4 files changed, 11 insertions, 4 deletions
diff --git a/build-aux/config.guess b/build-aux/config.guess
index 18f8edc0ff5..47d7bed50c5 100755
--- a/build-aux/config.guess
+++ b/build-aux/config.guess
@@ -2,7 +2,7 @@
2# Attempt to guess a canonical system name. 2# Attempt to guess a canonical system name.
3# Copyright 1992-2018 Free Software Foundation, Inc. 3# Copyright 1992-2018 Free Software Foundation, Inc.
4 4
5timestamp='2018-08-29' 5timestamp='2018-11-28'
6 6
7# This file is free software; you can redistribute it and/or modify it 7# This file is free software; you can redistribute it and/or modify it
8# under the terms of the GNU General Public License as published by 8# under the terms of the GNU General Public License as published by
@@ -1424,6 +1424,9 @@ EOF
1424 amd64:Isilon\ OneFS:*:*) 1424 amd64:Isilon\ OneFS:*:*)
1425 echo x86_64-unknown-onefs 1425 echo x86_64-unknown-onefs
1426 exit ;; 1426 exit ;;
1427 *:Unleashed:*:*)
1428 echo "$UNAME_MACHINE"-unknown-unleashed"$UNAME_RELEASE"
1429 exit ;;
1427esac 1430esac
1428 1431
1429echo "$0: unable to guess system type" >&2 1432echo "$0: unable to guess system type" >&2
diff --git a/build-aux/config.sub b/build-aux/config.sub
index f208558ec21..46708056af3 100755
--- a/build-aux/config.sub
+++ b/build-aux/config.sub
@@ -2,7 +2,7 @@
2# Configuration validation subroutine script. 2# Configuration validation subroutine script.
3# Copyright 1992-2018 Free Software Foundation, Inc. 3# Copyright 1992-2018 Free Software Foundation, Inc.
4 4
5timestamp='2018-08-29' 5timestamp='2018-11-28'
6 6
7# This file is free software; you can redistribute it and/or modify it 7# This file is free software; you can redistribute it and/or modify it
8# under the terms of the GNU General Public License as published by 8# under the terms of the GNU General Public License as published by
@@ -1161,6 +1161,7 @@ case $cpu-$vendor in
1161 | alpha64 | alpha64ev[4-8] | alpha64ev56 | alpha64ev6[78] \ 1161 | alpha64 | alpha64ev[4-8] | alpha64ev56 | alpha64ev6[78] \
1162 | alphapca5[67] | alpha64pca5[67] \ 1162 | alphapca5[67] | alpha64pca5[67] \
1163 | am33_2.0 \ 1163 | am33_2.0 \
1164 | amdgcn \
1164 | arc | arceb \ 1165 | arc | arceb \
1165 | arm | arm[lb]e | arme[lb] | armv* \ 1166 | arm | arm[lb]e | arme[lb] | armv* \
1166 | avr | avr32 \ 1167 | avr | avr32 \
@@ -1360,7 +1361,7 @@ case $os in
1360 | powermax* | dnix* | nx6 | nx7 | sei* | dragonfly* \ 1361 | powermax* | dnix* | nx6 | nx7 | sei* | dragonfly* \
1361 | skyos* | haiku* | rdos* | toppers* | drops* | es* \ 1362 | skyos* | haiku* | rdos* | toppers* | drops* | es* \
1362 | onefs* | tirtos* | phoenix* | fuchsia* | redox* | bme* \ 1363 | onefs* | tirtos* | phoenix* | fuchsia* | redox* | bme* \
1363 | midnightbsd*) 1364 | midnightbsd* | amdhsa* | unleashed*)
1364 # Remember, each alternative MUST END IN *, to match a version number. 1365 # Remember, each alternative MUST END IN *, to match a version number.
1365 ;; 1366 ;;
1366 qnx*) 1367 qnx*)
diff --git a/lib/memrchr.c b/lib/memrchr.c
index 99acfd9c56d..2efc7cb9752 100644
--- a/lib/memrchr.c
+++ b/lib/memrchr.c
@@ -68,7 +68,7 @@ __memrchr (void const *s, int c_in, size_t n)
68 if (*--char_ptr == c) 68 if (*--char_ptr == c)
69 return (void *) char_ptr; 69 return (void *) char_ptr;
70 70
71 longword_ptr = (const longword *) char_ptr; 71 longword_ptr = (const void *) char_ptr;
72 72
73 /* All these elucidatory comments refer to 4-byte longwords, 73 /* All these elucidatory comments refer to 4-byte longwords,
74 but the theory applies equally well to any size longwords. */ 74 but the theory applies equally well to any size longwords. */
diff --git a/m4/gnulib-comp.m4 b/m4/gnulib-comp.m4
index 5618befebf8..a4dddbad738 100644
--- a/m4/gnulib-comp.m4
+++ b/m4/gnulib-comp.m4
@@ -650,6 +650,9 @@ AC_DEFUN([gl_INIT],
650 if test $NEED_LOCALTIME_BUFFER = 1; then 650 if test $NEED_LOCALTIME_BUFFER = 1; then
651 func_gl_gnulib_m4code_2049e887c7e5308faad27b3f894bb8c9 651 func_gl_gnulib_m4code_2049e887c7e5308faad27b3f894bb8c9
652 fi 652 fi
653 if test $REPLACE_MKTIME = 1; then
654 func_gl_gnulib_m4code_21ee726a3540c09237a8e70c0baf7467
655 fi
653 if test $HAVE_READLINKAT = 0; then 656 if test $HAVE_READLINKAT = 0; then
654 func_gl_gnulib_m4code_260941c0e5dc67ec9e87d1fb321c300b 657 func_gl_gnulib_m4code_260941c0e5dc67ec9e87d1fb321c300b
655 fi 658 fi