[PATCH] havelib: fix typo in previous change

2017-11-05 Thread Paul Eggert
* m4/lib-prefix.m4 (AC_LIB_PREPARE_MULTILIB): Fix typo. --- ChangeLog| 3 +++ m4/lib-prefix.m4 | 4 ++-- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 53a2b8f7b..c9dc192dd 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ 2017-11-05 Paul

Re: [PATCH] fstatat: pacify GCC on unusual platform

2017-11-05 Thread Paul Eggert
Jim Meyering wrote: On Sun, Nov 5, 2017 at 2:29 PM, Paul Eggert wrote: * lib/fstatat.c (orig_fstatat) [!HAVE_WORKING_FSTATAT_ZERO_FLAG]: Omit, as it’s unused in this case. Thanks. For the record, which platform required that? I believe it was Fedora 26 x86-64 with CFLAGS='-m32'. Another bu

[PATCH] Don’t use AC_EGREP_CPP if affected by CFLAGS

2017-11-05 Thread Paul Eggert
* m4/float_h.m4 (gl_FLOAT_H): * m4/host-cpu-c-abi.m4 (gl_HOST_CPU_C_ABI): * m4/lib-ld.m4 (AC_LIB_PROG_LD): * m4/lib-prefix.m4 (AC_LIB_PREPARE_MULTILIB): * m4/year2038.m4 (gl_YEAR2038): Prefer AC_COMPILE_IFELSE to AC_EGREP_CPP when testing conditions likely to be affected by the choice of CFLAGS, si

Re: [PATCH] fstatat: pacify GCC on unusual platform

2017-11-05 Thread Jim Meyering
On Sun, Nov 5, 2017 at 2:29 PM, Paul Eggert wrote: > * lib/fstatat.c (orig_fstatat) [!HAVE_WORKING_FSTATAT_ZERO_FLAG]: > Omit, as it’s unused in this case. Thanks. For the record, which platform required that?

[PATCH] fstatat: pacify GCC on unusual platform

2017-11-05 Thread Paul Eggert
* lib/fstatat.c (orig_fstatat) [!HAVE_WORKING_FSTATAT_ZERO_FLAG]: Omit, as it’s unused in this case. --- ChangeLog | 6 ++ lib/fstatat.c | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 87a929791..4bc28d981 100644 --- a/ChangeLog +++ b/Chang