diff options
author | Alan Modra <amodra@gmail.com> | 2021-04-05 15:31:53 +0930 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2021-04-05 15:31:53 +0930 |
commit | c774eab1c82f49f0f719fd7e51e5988c62082118 (patch) | |
tree | e8f1d3c42cdf376a768fe11cca195261ddeb04ac /ld/ChangeLog | |
parent | 23d613801dfb97757f0e8eaf260d154f3e6750b1 (diff) | |
download | fsf-binutils-gdb-c774eab1c82f49f0f719fd7e51e5988c62082118.zip fsf-binutils-gdb-c774eab1c82f49f0f719fd7e51e5988c62082118.tar.gz fsf-binutils-gdb-c774eab1c82f49f0f719fd7e51e5988c62082118.tar.bz2 |
C99 ld configury
* configure.ac: Move initfini-array arg handling earlier. Don't
check for string.h, strings.h, stdlib.h, or locale.h. Do check
for inttypes.h, stdint.h, sys/types.h. Don't check for
setlocale, free, getev or strstr.
(AC_ISC_POSIX): Don't invoke.
* sysdep.h: Include string.h and stdlib.h unconditionally. Test
HAVE_SYS_TYPE_H and HAVE_SYS_STAT_H. Remove strstr, free and
getenv fallback declarations.
* ld.h: Don't test HAVE_LOCALE_H.
* ldmain.c: Don't test HAVE_SETLOCALE.
* config.in: Regenerate.
* configure: Regenerate.
Diffstat (limited to 'ld/ChangeLog')
-rw-r--r-- | ld/ChangeLog | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/ld/ChangeLog b/ld/ChangeLog index cf41389..d12ba77 100644 --- a/ld/ChangeLog +++ b/ld/ChangeLog @@ -1,3 +1,18 @@ +2021-04-05 Alan Modra <amodra@gmail.com> + + * configure.ac: Move initfini-array arg handling earlier. Don't + check for string.h, strings.h, stdlib.h, or locale.h. Do check + for inttypes.h, stdint.h, sys/types.h. Don't check for + setlocale, free, getev or strstr. + (AC_ISC_POSIX): Don't invoke. + * sysdep.h: Include string.h and stdlib.h unconditionally. Test + HAVE_SYS_TYPE_H and HAVE_SYS_STAT_H. Remove strstr, free and + getenv fallback declarations. + * ld.h: Don't test HAVE_LOCALE_H. + * ldmain.c: Don't test HAVE_SETLOCALE. + * config.in: Regenerate. + * configure: Regenerate. + 2021-04-01 Tamar Christina <tamar.christina@arm.com> PR ld/26659 |