From fe3486178040db782f18d67a95a1e63bdf68eedf Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Sat, 1 May 2021 16:30:59 -0400 Subject: [PATCH] sim: nrun: add local strsignal prototype While libiberty provides a definition for this for systems that lack the function (e.g. Windows), it doesn't provide a prototype. So add our own local copy in the one file that uses the func. --- sim/ChangeLog | 4 ++++ sim/aarch64/ChangeLog | 4 ++++ sim/aarch64/config.in | 3 +++ sim/aarch64/configure | 7 +++++-- sim/arm/ChangeLog | 4 ++++ sim/arm/config.in | 3 +++ sim/arm/configure | 7 +++++-- sim/avr/ChangeLog | 4 ++++ sim/avr/config.in | 3 +++ sim/avr/configure | 7 +++++-- sim/bfin/ChangeLog | 4 ++++ sim/bfin/config.in | 3 +++ sim/bfin/configure | 7 +++++-- sim/bpf/ChangeLog | 4 ++++ sim/bpf/config.in | 3 +++ sim/bpf/configure | 7 +++++-- sim/common/ChangeLog | 4 ++++ sim/common/nrun.c | 5 +++++ sim/cr16/ChangeLog | 4 ++++ sim/cr16/config.in | 3 +++ sim/cr16/configure | 7 +++++-- sim/cris/ChangeLog | 4 ++++ sim/cris/config.in | 3 +++ sim/cris/configure | 7 +++++-- sim/d10v/ChangeLog | 4 ++++ sim/d10v/config.in | 3 +++ sim/d10v/configure | 7 +++++-- sim/erc32/ChangeLog | 4 ++++ sim/erc32/config.in | 3 +++ sim/erc32/configure | 7 +++++-- sim/example-synacor/ChangeLog | 4 ++++ sim/example-synacor/config.in | 3 +++ sim/example-synacor/configure | 7 +++++-- sim/frv/ChangeLog | 4 ++++ sim/frv/config.in | 3 +++ sim/frv/configure | 7 +++++-- sim/ft32/ChangeLog | 4 ++++ sim/ft32/config.in | 3 +++ sim/ft32/configure | 7 +++++-- sim/h8300/ChangeLog | 4 ++++ sim/h8300/config.in | 3 +++ sim/h8300/configure | 7 +++++-- sim/iq2000/ChangeLog | 4 ++++ sim/iq2000/config.in | 3 +++ sim/iq2000/configure | 7 +++++-- sim/lm32/ChangeLog | 4 ++++ sim/lm32/config.in | 3 +++ sim/lm32/configure | 7 +++++-- sim/m32c/ChangeLog | 4 ++++ sim/m32c/config.in | 3 +++ sim/m32c/configure | 7 +++++-- sim/m32r/ChangeLog | 4 ++++ sim/m32r/config.in | 3 +++ sim/m32r/configure | 7 +++++-- sim/m4/sim_ac_common.m4 | 1 + sim/m68hc11/ChangeLog | 4 ++++ sim/m68hc11/config.in | 3 +++ sim/m68hc11/configure | 7 +++++-- sim/mcore/ChangeLog | 4 ++++ sim/mcore/config.in | 3 +++ sim/mcore/configure | 7 +++++-- sim/microblaze/ChangeLog | 4 ++++ sim/microblaze/config.in | 3 +++ sim/microblaze/configure | 7 +++++-- sim/mips/ChangeLog | 4 ++++ sim/mips/config.in | 3 +++ sim/mips/configure | 7 +++++-- sim/mn10300/ChangeLog | 4 ++++ sim/mn10300/config.in | 3 +++ sim/mn10300/configure | 7 +++++-- sim/moxie/ChangeLog | 4 ++++ sim/moxie/config.in | 3 +++ sim/moxie/configure | 7 +++++-- sim/msp430/ChangeLog | 4 ++++ sim/msp430/config.in | 3 +++ sim/msp430/configure | 7 +++++-- sim/or1k/ChangeLog | 4 ++++ sim/or1k/config.in | 3 +++ sim/or1k/configure | 7 +++++-- sim/pru/ChangeLog | 4 ++++ sim/pru/config.in | 3 +++ sim/pru/configure | 7 +++++-- sim/riscv/ChangeLog | 4 ++++ sim/riscv/config.in | 3 +++ sim/riscv/configure | 7 +++++-- sim/rl78/ChangeLog | 4 ++++ sim/rl78/config.in | 3 +++ sim/rl78/configure | 7 +++++-- sim/rx/ChangeLog | 4 ++++ sim/rx/config.in | 3 +++ sim/rx/configure | 7 +++++-- sim/sh/ChangeLog | 4 ++++ sim/sh/config.in | 3 +++ sim/sh/configure | 7 +++++-- sim/v850/ChangeLog | 4 ++++ sim/v850/config.in | 3 +++ sim/v850/configure | 7 +++++-- 97 files changed, 386 insertions(+), 62 deletions(-) diff --git a/sim/ChangeLog b/sim/ChangeLog index b622f62e635..8f0e1d54fb6 100644 --- a/sim/ChangeLog +++ b/sim/ChangeLog @@ -1,3 +1,7 @@ +2021-05-01 Mike Frysinger + + * m4/sim_ac_common.m4 (AC_CHECK_FUNCS_ONCE): Add strsignal. + 2021-04-26 Mike Frysinger * README-HACKING (nltvals.def): Update to gennltvals.py. diff --git a/sim/aarch64/ChangeLog b/sim/aarch64/ChangeLog index 81b878fa145..9d739ff7422 100644 --- a/sim/aarch64/ChangeLog +++ b/sim/aarch64/ChangeLog @@ -1,3 +1,7 @@ +2021-05-01 Mike Frysinger + + * config.in, configure: Regenerate. + 2021-05-01 Mike Frysinger * cpustate.c (aarch64_set_FP_float): Change lx to PRIx64. diff --git a/sim/aarch64/config.in b/sim/aarch64/config.in index 8d37b72597d..c694fde2126 100644 --- a/sim/aarch64/config.in +++ b/sim/aarch64/config.in @@ -73,6 +73,9 @@ /* Define to 1 if you have the header file. */ #undef HAVE_STRING_H +/* Define to 1 if you have the `strsignal' function. */ +#undef HAVE_STRSIGNAL + /* Define to 1 if `st_atime' is a member of `struct stat'. */ #undef HAVE_STRUCT_STAT_ST_ATIME diff --git a/sim/aarch64/configure b/sim/aarch64/configure index 1d6a498f020..37aa067dbe0 100755 --- a/sim/aarch64/configure +++ b/sim/aarch64/configure @@ -2305,6 +2305,7 @@ as_fn_append ac_func_list " mmap" as_fn_append ac_func_list " munmap" as_fn_append ac_func_list " posix_fallocate" as_fn_append ac_func_list " sigaction" +as_fn_append ac_func_list " strsignal" as_fn_append ac_func_list " time" as_fn_append ac_func_list " truncate" # Check that the precious variables saved in the cache have kept the same @@ -3944,6 +3945,8 @@ done + + @@ -11186,7 +11189,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 11189 "configure" +#line 11192 "configure" #include "confdefs.h" #if HAVE_DLFCN_H @@ -11292,7 +11295,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 11295 "configure" +#line 11298 "configure" #include "confdefs.h" #if HAVE_DLFCN_H diff --git a/sim/arm/ChangeLog b/sim/arm/ChangeLog index b60287f7631..639942afbad 100644 --- a/sim/arm/ChangeLog +++ b/sim/arm/ChangeLog @@ -1,3 +1,7 @@ +2021-05-01 Mike Frysinger + + * config.in, configure: Regenerate. + 2021-05-01 Mike Frysinger * Makefile.in (SIM_OBJS): Change armemu26.o to armemu.o. diff --git a/sim/arm/config.in b/sim/arm/config.in index 8d37b72597d..c694fde2126 100644 --- a/sim/arm/config.in +++ b/sim/arm/config.in @@ -73,6 +73,9 @@ /* Define to 1 if you have the header file. */ #undef HAVE_STRING_H +/* Define to 1 if you have the `strsignal' function. */ +#undef HAVE_STRSIGNAL + /* Define to 1 if `st_atime' is a member of `struct stat'. */ #undef HAVE_STRUCT_STAT_ST_ATIME diff --git a/sim/arm/configure b/sim/arm/configure index 8cabf9261bf..2b838775b0d 100755 --- a/sim/arm/configure +++ b/sim/arm/configure @@ -2305,6 +2305,7 @@ as_fn_append ac_func_list " mmap" as_fn_append ac_func_list " munmap" as_fn_append ac_func_list " posix_fallocate" as_fn_append ac_func_list " sigaction" +as_fn_append ac_func_list " strsignal" as_fn_append ac_func_list " time" as_fn_append ac_func_list " truncate" # Check that the precious variables saved in the cache have kept the same @@ -3944,6 +3945,8 @@ done + + @@ -11186,7 +11189,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 11189 "configure" +#line 11192 "configure" #include "confdefs.h" #if HAVE_DLFCN_H @@ -11292,7 +11295,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 11295 "configure" +#line 11298 "configure" #include "confdefs.h" #if HAVE_DLFCN_H diff --git a/sim/avr/ChangeLog b/sim/avr/ChangeLog index 9c53284bcfc..47a98003a11 100644 --- a/sim/avr/ChangeLog +++ b/sim/avr/ChangeLog @@ -1,3 +1,7 @@ +2021-05-01 Mike Frysinger + + * config.in, configure: Regenerate. + 2021-04-26 Mike Frysinger * aclocal.m4, config.in, configure: Regenerate. diff --git a/sim/avr/config.in b/sim/avr/config.in index 8d37b72597d..c694fde2126 100644 --- a/sim/avr/config.in +++ b/sim/avr/config.in @@ -73,6 +73,9 @@ /* Define to 1 if you have the header file. */ #undef HAVE_STRING_H +/* Define to 1 if you have the `strsignal' function. */ +#undef HAVE_STRSIGNAL + /* Define to 1 if `st_atime' is a member of `struct stat'. */ #undef HAVE_STRUCT_STAT_ST_ATIME diff --git a/sim/avr/configure b/sim/avr/configure index 5c43b2964df..6bb27f7f4a7 100755 --- a/sim/avr/configure +++ b/sim/avr/configure @@ -2305,6 +2305,7 @@ as_fn_append ac_func_list " mmap" as_fn_append ac_func_list " munmap" as_fn_append ac_func_list " posix_fallocate" as_fn_append ac_func_list " sigaction" +as_fn_append ac_func_list " strsignal" as_fn_append ac_func_list " time" as_fn_append ac_func_list " truncate" # Check that the precious variables saved in the cache have kept the same @@ -3944,6 +3945,8 @@ done + + @@ -11186,7 +11189,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 11189 "configure" +#line 11192 "configure" #include "confdefs.h" #if HAVE_DLFCN_H @@ -11292,7 +11295,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 11295 "configure" +#line 11298 "configure" #include "confdefs.h" #if HAVE_DLFCN_H diff --git a/sim/bfin/ChangeLog b/sim/bfin/ChangeLog index 4db4214867a..9e9c13e7b3e 100644 --- a/sim/bfin/ChangeLog +++ b/sim/bfin/ChangeLog @@ -1,3 +1,7 @@ +2021-05-01 Mike Frysinger + + * config.in, configure: Regenerate. + 2021-04-26 Mike Frysinger * Makefile.in (NL_TARGET): Delete. diff --git a/sim/bfin/config.in b/sim/bfin/config.in index 5ccb707f762..851b3f8d620 100644 --- a/sim/bfin/config.in +++ b/sim/bfin/config.in @@ -109,6 +109,9 @@ /* Define to 1 if you have the header file. */ #undef HAVE_STRING_H +/* Define to 1 if you have the `strsignal' function. */ +#undef HAVE_STRSIGNAL + /* Define to 1 if `st_atime' is a member of `struct stat'. */ #undef HAVE_STRUCT_STAT_ST_ATIME diff --git a/sim/bfin/configure b/sim/bfin/configure index 128621cdbd4..af65c13cab1 100755 --- a/sim/bfin/configure +++ b/sim/bfin/configure @@ -2325,6 +2325,7 @@ as_fn_append ac_func_list " mmap" as_fn_append ac_func_list " munmap" as_fn_append ac_func_list " posix_fallocate" as_fn_append ac_func_list " sigaction" +as_fn_append ac_func_list " strsignal" as_fn_append ac_func_list " time" as_fn_append ac_func_list " truncate" as_fn_append ac_func_list " getuid" @@ -3977,6 +3978,8 @@ done + + @@ -11219,7 +11222,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 11222 "configure" +#line 11225 "configure" #include "confdefs.h" #if HAVE_DLFCN_H @@ -11325,7 +11328,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 11328 "configure" +#line 11331 "configure" #include "confdefs.h" #if HAVE_DLFCN_H diff --git a/sim/bpf/ChangeLog b/sim/bpf/ChangeLog index e5e223122bc..4ccb9a4af3d 100644 --- a/sim/bpf/ChangeLog +++ b/sim/bpf/ChangeLog @@ -1,3 +1,7 @@ +2021-05-01 Mike Frysinger + + * config.in, configure: Regenerate. + 2021-04-26 Mike Frysinger * aclocal.m4, config.in, configure: Regenerate. diff --git a/sim/bpf/config.in b/sim/bpf/config.in index 8d37b72597d..c694fde2126 100644 --- a/sim/bpf/config.in +++ b/sim/bpf/config.in @@ -73,6 +73,9 @@ /* Define to 1 if you have the header file. */ #undef HAVE_STRING_H +/* Define to 1 if you have the `strsignal' function. */ +#undef HAVE_STRSIGNAL + /* Define to 1 if `st_atime' is a member of `struct stat'. */ #undef HAVE_STRUCT_STAT_ST_ATIME diff --git a/sim/bpf/configure b/sim/bpf/configure index 32b4a77529e..e7a91d15c49 100755 --- a/sim/bpf/configure +++ b/sim/bpf/configure @@ -2318,6 +2318,7 @@ as_fn_append ac_func_list " mmap" as_fn_append ac_func_list " munmap" as_fn_append ac_func_list " posix_fallocate" as_fn_append ac_func_list " sigaction" +as_fn_append ac_func_list " strsignal" as_fn_append ac_func_list " time" as_fn_append ac_func_list " truncate" # Check that the precious variables saved in the cache have kept the same @@ -3957,6 +3958,8 @@ done + + @@ -11199,7 +11202,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 11202 "configure" +#line 11205 "configure" #include "confdefs.h" #if HAVE_DLFCN_H @@ -11305,7 +11308,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 11308 "configure" +#line 11311 "configure" #include "confdefs.h" #if HAVE_DLFCN_H diff --git a/sim/common/ChangeLog b/sim/common/ChangeLog index 9775f418b8f..3983e2417cf 100644 --- a/sim/common/ChangeLog +++ b/sim/common/ChangeLog @@ -1,3 +1,7 @@ +2021-05-01 Mike Frysinger + + * nrun.c (strsignal): New prototype. + 2021-05-01 Mike Frysinger * callback.c (wrap): Delete. diff --git a/sim/common/nrun.c b/sim/common/nrun.c index 0caa82062a2..1ceb0837e2c 100644 --- a/sim/common/nrun.c +++ b/sim/common/nrun.c @@ -28,6 +28,11 @@ along with this program. If not, see . */ #include "bfd.h" +#ifndef HAVE_STRSIGNAL +/* While libiberty provides a fallback, it doesn't provide a prototype. */ +extern const char *strsignal (int); +#endif + #ifdef HAVE_ENVIRON extern char **environ; #endif diff --git a/sim/cr16/ChangeLog b/sim/cr16/ChangeLog index 2540c373471..654b4e0987e 100644 --- a/sim/cr16/ChangeLog +++ b/sim/cr16/ChangeLog @@ -1,3 +1,7 @@ +2021-05-01 Mike Frysinger + + * config.in, configure: Regenerate. + 2021-04-26 Mike Frysinger * aclocal.m4, config.in, configure: Regenerate. diff --git a/sim/cr16/config.in b/sim/cr16/config.in index 8d37b72597d..c694fde2126 100644 --- a/sim/cr16/config.in +++ b/sim/cr16/config.in @@ -73,6 +73,9 @@ /* Define to 1 if you have the header file. */ #undef HAVE_STRING_H +/* Define to 1 if you have the `strsignal' function. */ +#undef HAVE_STRSIGNAL + /* Define to 1 if `st_atime' is a member of `struct stat'. */ #undef HAVE_STRUCT_STAT_ST_ATIME diff --git a/sim/cr16/configure b/sim/cr16/configure index b0d92cef4ab..9886f36aaf8 100755 --- a/sim/cr16/configure +++ b/sim/cr16/configure @@ -2305,6 +2305,7 @@ as_fn_append ac_func_list " mmap" as_fn_append ac_func_list " munmap" as_fn_append ac_func_list " posix_fallocate" as_fn_append ac_func_list " sigaction" +as_fn_append ac_func_list " strsignal" as_fn_append ac_func_list " time" as_fn_append ac_func_list " truncate" # Check that the precious variables saved in the cache have kept the same @@ -3944,6 +3945,8 @@ done + + @@ -11186,7 +11189,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 11189 "configure" +#line 11192 "configure" #include "confdefs.h" #if HAVE_DLFCN_H @@ -11292,7 +11295,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 11295 "configure" +#line 11298 "configure" #include "confdefs.h" #if HAVE_DLFCN_H diff --git a/sim/cris/ChangeLog b/sim/cris/ChangeLog index 4f0d2e3693d..1ac455e561b 100644 --- a/sim/cris/ChangeLog +++ b/sim/cris/ChangeLog @@ -1,3 +1,7 @@ +2021-05-01 Mike Frysinger + + * config.in, configure: Regenerate. + 2021-04-26 Mike Frysinger * Makefile.in (NL_TARGET): Delete. diff --git a/sim/cris/config.in b/sim/cris/config.in index 2e48a348f13..75144252f1e 100644 --- a/sim/cris/config.in +++ b/sim/cris/config.in @@ -73,6 +73,9 @@ /* Define to 1 if you have the header file. */ #undef HAVE_STRING_H +/* Define to 1 if you have the `strsignal' function. */ +#undef HAVE_STRSIGNAL + /* Define to 1 if `st_atime' is a member of `struct stat'. */ #undef HAVE_STRUCT_STAT_ST_ATIME diff --git a/sim/cris/configure b/sim/cris/configure index 6f0b25e85bf..798e9a5ba31 100755 --- a/sim/cris/configure +++ b/sim/cris/configure @@ -2316,6 +2316,7 @@ as_fn_append ac_func_list " mmap" as_fn_append ac_func_list " munmap" as_fn_append ac_func_list " posix_fallocate" as_fn_append ac_func_list " sigaction" +as_fn_append ac_func_list " strsignal" as_fn_append ac_func_list " time" as_fn_append ac_func_list " truncate" as_fn_append ac_header_list " sys/param.h" @@ -3958,6 +3959,8 @@ done + + @@ -11200,7 +11203,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 11203 "configure" +#line 11206 "configure" #include "confdefs.h" #if HAVE_DLFCN_H @@ -11306,7 +11309,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 11309 "configure" +#line 11312 "configure" #include "confdefs.h" #if HAVE_DLFCN_H diff --git a/sim/d10v/ChangeLog b/sim/d10v/ChangeLog index 9945be49a8f..ebe6cd3f1a9 100644 --- a/sim/d10v/ChangeLog +++ b/sim/d10v/ChangeLog @@ -1,3 +1,7 @@ +2021-05-01 Mike Frysinger + + * config.in, configure: Regenerate. + 2021-04-26 Mike Frysinger * aclocal.m4, config.in, configure: Regenerate. diff --git a/sim/d10v/config.in b/sim/d10v/config.in index 8d37b72597d..c694fde2126 100644 --- a/sim/d10v/config.in +++ b/sim/d10v/config.in @@ -73,6 +73,9 @@ /* Define to 1 if you have the header file. */ #undef HAVE_STRING_H +/* Define to 1 if you have the `strsignal' function. */ +#undef HAVE_STRSIGNAL + /* Define to 1 if `st_atime' is a member of `struct stat'. */ #undef HAVE_STRUCT_STAT_ST_ATIME diff --git a/sim/d10v/configure b/sim/d10v/configure index 3daef523520..177c394cb75 100755 --- a/sim/d10v/configure +++ b/sim/d10v/configure @@ -2305,6 +2305,7 @@ as_fn_append ac_func_list " mmap" as_fn_append ac_func_list " munmap" as_fn_append ac_func_list " posix_fallocate" as_fn_append ac_func_list " sigaction" +as_fn_append ac_func_list " strsignal" as_fn_append ac_func_list " time" as_fn_append ac_func_list " truncate" # Check that the precious variables saved in the cache have kept the same @@ -3944,6 +3945,8 @@ done + + @@ -11186,7 +11189,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 11189 "configure" +#line 11192 "configure" #include "confdefs.h" #if HAVE_DLFCN_H @@ -11292,7 +11295,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 11295 "configure" +#line 11298 "configure" #include "confdefs.h" #if HAVE_DLFCN_H diff --git a/sim/erc32/ChangeLog b/sim/erc32/ChangeLog index a6d1cad8234..12398af8997 100644 --- a/sim/erc32/ChangeLog +++ b/sim/erc32/ChangeLog @@ -1,3 +1,7 @@ +2021-05-01 Mike Frysinger + + * config.in, configure: Regenerate. + 2021-04-26 Mike Frysinger * aclocal.m4, config.in, configure: Regenerate. diff --git a/sim/erc32/config.in b/sim/erc32/config.in index 8d37b72597d..c694fde2126 100644 --- a/sim/erc32/config.in +++ b/sim/erc32/config.in @@ -73,6 +73,9 @@ /* Define to 1 if you have the header file. */ #undef HAVE_STRING_H +/* Define to 1 if you have the `strsignal' function. */ +#undef HAVE_STRSIGNAL + /* Define to 1 if `st_atime' is a member of `struct stat'. */ #undef HAVE_STRUCT_STAT_ST_ATIME diff --git a/sim/erc32/configure b/sim/erc32/configure index a884ee7d2ea..bbcec31f416 100755 --- a/sim/erc32/configure +++ b/sim/erc32/configure @@ -2301,6 +2301,7 @@ as_fn_append ac_func_list " mmap" as_fn_append ac_func_list " munmap" as_fn_append ac_func_list " posix_fallocate" as_fn_append ac_func_list " sigaction" +as_fn_append ac_func_list " strsignal" as_fn_append ac_func_list " time" as_fn_append ac_func_list " truncate" # Check that the precious variables saved in the cache have kept the same @@ -3940,6 +3941,8 @@ done + + @@ -11182,7 +11185,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 11185 "configure" +#line 11188 "configure" #include "confdefs.h" #if HAVE_DLFCN_H @@ -11288,7 +11291,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 11291 "configure" +#line 11294 "configure" #include "confdefs.h" #if HAVE_DLFCN_H diff --git a/sim/example-synacor/ChangeLog b/sim/example-synacor/ChangeLog index 886509303d1..f00fe5238e9 100644 --- a/sim/example-synacor/ChangeLog +++ b/sim/example-synacor/ChangeLog @@ -1,3 +1,7 @@ +2021-05-01 Mike Frysinger + + * config.in, configure: Regenerate. + 2021-04-26 Mike Frysinger * aclocal.m4, config.in, configure: Regenerate. diff --git a/sim/example-synacor/config.in b/sim/example-synacor/config.in index 8d37b72597d..c694fde2126 100644 --- a/sim/example-synacor/config.in +++ b/sim/example-synacor/config.in @@ -73,6 +73,9 @@ /* Define to 1 if you have the header file. */ #undef HAVE_STRING_H +/* Define to 1 if you have the `strsignal' function. */ +#undef HAVE_STRSIGNAL + /* Define to 1 if `st_atime' is a member of `struct stat'. */ #undef HAVE_STRUCT_STAT_ST_ATIME diff --git a/sim/example-synacor/configure b/sim/example-synacor/configure index a5938bef338..6b43a276eee 100755 --- a/sim/example-synacor/configure +++ b/sim/example-synacor/configure @@ -2305,6 +2305,7 @@ as_fn_append ac_func_list " mmap" as_fn_append ac_func_list " munmap" as_fn_append ac_func_list " posix_fallocate" as_fn_append ac_func_list " sigaction" +as_fn_append ac_func_list " strsignal" as_fn_append ac_func_list " time" as_fn_append ac_func_list " truncate" # Check that the precious variables saved in the cache have kept the same @@ -3944,6 +3945,8 @@ done + + @@ -11186,7 +11189,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 11189 "configure" +#line 11192 "configure" #include "confdefs.h" #if HAVE_DLFCN_H @@ -11292,7 +11295,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 11295 "configure" +#line 11298 "configure" #include "confdefs.h" #if HAVE_DLFCN_H diff --git a/sim/frv/ChangeLog b/sim/frv/ChangeLog index 666aa825db9..1dd18a1c428 100644 --- a/sim/frv/ChangeLog +++ b/sim/frv/ChangeLog @@ -1,3 +1,7 @@ +2021-05-01 Mike Frysinger + + * config.in, configure: Regenerate. + 2021-04-26 Mike Frysinger * Makefile.in (NL_TARGET): Delete. diff --git a/sim/frv/config.in b/sim/frv/config.in index 8d37b72597d..c694fde2126 100644 --- a/sim/frv/config.in +++ b/sim/frv/config.in @@ -73,6 +73,9 @@ /* Define to 1 if you have the header file. */ #undef HAVE_STRING_H +/* Define to 1 if you have the `strsignal' function. */ +#undef HAVE_STRSIGNAL + /* Define to 1 if `st_atime' is a member of `struct stat'. */ #undef HAVE_STRUCT_STAT_ST_ATIME diff --git a/sim/frv/configure b/sim/frv/configure index 921f6221f6b..102d3b6f8fb 100755 --- a/sim/frv/configure +++ b/sim/frv/configure @@ -2319,6 +2319,7 @@ as_fn_append ac_func_list " mmap" as_fn_append ac_func_list " munmap" as_fn_append ac_func_list " posix_fallocate" as_fn_append ac_func_list " sigaction" +as_fn_append ac_func_list " strsignal" as_fn_append ac_func_list " time" as_fn_append ac_func_list " truncate" # Check that the precious variables saved in the cache have kept the same @@ -3958,6 +3959,8 @@ done + + @@ -11200,7 +11203,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 11203 "configure" +#line 11206 "configure" #include "confdefs.h" #if HAVE_DLFCN_H @@ -11306,7 +11309,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 11309 "configure" +#line 11312 "configure" #include "confdefs.h" #if HAVE_DLFCN_H diff --git a/sim/ft32/ChangeLog b/sim/ft32/ChangeLog index 6a2643622c8..d0e5bec927f 100644 --- a/sim/ft32/ChangeLog +++ b/sim/ft32/ChangeLog @@ -1,3 +1,7 @@ +2021-05-01 Mike Frysinger + + * config.in, configure: Regenerate. + 2021-04-26 Mike Frysinger * aclocal.m4, config.in, configure: Regenerate. diff --git a/sim/ft32/config.in b/sim/ft32/config.in index 8d37b72597d..c694fde2126 100644 --- a/sim/ft32/config.in +++ b/sim/ft32/config.in @@ -73,6 +73,9 @@ /* Define to 1 if you have the header file. */ #undef HAVE_STRING_H +/* Define to 1 if you have the `strsignal' function. */ +#undef HAVE_STRSIGNAL + /* Define to 1 if `st_atime' is a member of `struct stat'. */ #undef HAVE_STRUCT_STAT_ST_ATIME diff --git a/sim/ft32/configure b/sim/ft32/configure index d80f8f82e18..cfae5eaeb15 100755 --- a/sim/ft32/configure +++ b/sim/ft32/configure @@ -2305,6 +2305,7 @@ as_fn_append ac_func_list " mmap" as_fn_append ac_func_list " munmap" as_fn_append ac_func_list " posix_fallocate" as_fn_append ac_func_list " sigaction" +as_fn_append ac_func_list " strsignal" as_fn_append ac_func_list " time" as_fn_append ac_func_list " truncate" # Check that the precious variables saved in the cache have kept the same @@ -3944,6 +3945,8 @@ done + + @@ -11186,7 +11189,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 11189 "configure" +#line 11192 "configure" #include "confdefs.h" #if HAVE_DLFCN_H @@ -11292,7 +11295,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 11295 "configure" +#line 11298 "configure" #include "confdefs.h" #if HAVE_DLFCN_H diff --git a/sim/h8300/ChangeLog b/sim/h8300/ChangeLog index c3daaf4d795..0a67f6f31f8 100644 --- a/sim/h8300/ChangeLog +++ b/sim/h8300/ChangeLog @@ -1,3 +1,7 @@ +2021-05-01 Mike Frysinger + + * config.in, configure: Regenerate. + 2021-04-26 Mike Frysinger * aclocal.m4, config.in, configure: Regenerate. diff --git a/sim/h8300/config.in b/sim/h8300/config.in index 505aa8cf5f9..441cd1f2997 100644 --- a/sim/h8300/config.in +++ b/sim/h8300/config.in @@ -73,6 +73,9 @@ /* Define to 1 if you have the header file. */ #undef HAVE_STRING_H +/* Define to 1 if you have the `strsignal' function. */ +#undef HAVE_STRSIGNAL + /* Define to 1 if `st_atime' is a member of `struct stat'. */ #undef HAVE_STRUCT_STAT_ST_ATIME diff --git a/sim/h8300/configure b/sim/h8300/configure index fd7bc25b626..18312dafee1 100755 --- a/sim/h8300/configure +++ b/sim/h8300/configure @@ -2305,6 +2305,7 @@ as_fn_append ac_func_list " mmap" as_fn_append ac_func_list " munmap" as_fn_append ac_func_list " posix_fallocate" as_fn_append ac_func_list " sigaction" +as_fn_append ac_func_list " strsignal" as_fn_append ac_func_list " time" as_fn_append ac_func_list " truncate" as_fn_append ac_header_list " sys/param.h" @@ -3945,6 +3946,8 @@ done + + @@ -11187,7 +11190,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 11190 "configure" +#line 11193 "configure" #include "confdefs.h" #if HAVE_DLFCN_H @@ -11293,7 +11296,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 11296 "configure" +#line 11299 "configure" #include "confdefs.h" #if HAVE_DLFCN_H diff --git a/sim/iq2000/ChangeLog b/sim/iq2000/ChangeLog index 71483c14163..6798553d5cf 100644 --- a/sim/iq2000/ChangeLog +++ b/sim/iq2000/ChangeLog @@ -1,3 +1,7 @@ +2021-05-01 Mike Frysinger + + * config.in, configure: Regenerate. + 2021-04-26 Mike Frysinger * Makefile.in (NL_TARGET): Delete. diff --git a/sim/iq2000/config.in b/sim/iq2000/config.in index 8d37b72597d..c694fde2126 100644 --- a/sim/iq2000/config.in +++ b/sim/iq2000/config.in @@ -73,6 +73,9 @@ /* Define to 1 if you have the header file. */ #undef HAVE_STRING_H +/* Define to 1 if you have the `strsignal' function. */ +#undef HAVE_STRSIGNAL + /* Define to 1 if `st_atime' is a member of `struct stat'. */ #undef HAVE_STRUCT_STAT_ST_ATIME diff --git a/sim/iq2000/configure b/sim/iq2000/configure index 0607bc6db7f..ecefb970b80 100755 --- a/sim/iq2000/configure +++ b/sim/iq2000/configure @@ -2316,6 +2316,7 @@ as_fn_append ac_func_list " mmap" as_fn_append ac_func_list " munmap" as_fn_append ac_func_list " posix_fallocate" as_fn_append ac_func_list " sigaction" +as_fn_append ac_func_list " strsignal" as_fn_append ac_func_list " time" as_fn_append ac_func_list " truncate" # Check that the precious variables saved in the cache have kept the same @@ -3955,6 +3956,8 @@ done + + @@ -11197,7 +11200,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 11200 "configure" +#line 11203 "configure" #include "confdefs.h" #if HAVE_DLFCN_H @@ -11303,7 +11306,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 11306 "configure" +#line 11309 "configure" #include "confdefs.h" #if HAVE_DLFCN_H diff --git a/sim/lm32/ChangeLog b/sim/lm32/ChangeLog index bc22fd73a90..504b72fc7bd 100644 --- a/sim/lm32/ChangeLog +++ b/sim/lm32/ChangeLog @@ -1,3 +1,7 @@ +2021-05-01 Mike Frysinger + + * config.in, configure: Regenerate. + 2021-04-26 Mike Frysinger * Makefile.in (NL_TARGET): Delete. diff --git a/sim/lm32/config.in b/sim/lm32/config.in index 8d37b72597d..c694fde2126 100644 --- a/sim/lm32/config.in +++ b/sim/lm32/config.in @@ -73,6 +73,9 @@ /* Define to 1 if you have the header file. */ #undef HAVE_STRING_H +/* Define to 1 if you have the `strsignal' function. */ +#undef HAVE_STRSIGNAL + /* Define to 1 if `st_atime' is a member of `struct stat'. */ #undef HAVE_STRUCT_STAT_ST_ATIME diff --git a/sim/lm32/configure b/sim/lm32/configure index 4b4b8bc1bd8..855a460c13d 100755 --- a/sim/lm32/configure +++ b/sim/lm32/configure @@ -2316,6 +2316,7 @@ as_fn_append ac_func_list " mmap" as_fn_append ac_func_list " munmap" as_fn_append ac_func_list " posix_fallocate" as_fn_append ac_func_list " sigaction" +as_fn_append ac_func_list " strsignal" as_fn_append ac_func_list " time" as_fn_append ac_func_list " truncate" # Check that the precious variables saved in the cache have kept the same @@ -3955,6 +3956,8 @@ done + + @@ -11197,7 +11200,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 11200 "configure" +#line 11203 "configure" #include "confdefs.h" #if HAVE_DLFCN_H @@ -11303,7 +11306,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 11306 "configure" +#line 11309 "configure" #include "confdefs.h" #if HAVE_DLFCN_H diff --git a/sim/m32c/ChangeLog b/sim/m32c/ChangeLog index 28626e2e49e..b2a02a6c45c 100644 --- a/sim/m32c/ChangeLog +++ b/sim/m32c/ChangeLog @@ -1,3 +1,7 @@ +2021-05-01 Mike Frysinger + + * config.in, configure: Regenerate. + 2021-04-26 Mike Frysinger * Makefile.in (NL_TARGET): Delete. diff --git a/sim/m32c/config.in b/sim/m32c/config.in index 3b33610fa42..33cda709afd 100644 --- a/sim/m32c/config.in +++ b/sim/m32c/config.in @@ -79,6 +79,9 @@ /* Define to 1 if you have the header file. */ #undef HAVE_STRING_H +/* Define to 1 if you have the `strsignal' function. */ +#undef HAVE_STRSIGNAL + /* Define to 1 if `st_atime' is a member of `struct stat'. */ #undef HAVE_STRUCT_STAT_ST_ATIME diff --git a/sim/m32c/configure b/sim/m32c/configure index c0fa44f22a1..efb30d52aa3 100755 --- a/sim/m32c/configure +++ b/sim/m32c/configure @@ -2298,6 +2298,7 @@ as_fn_append ac_func_list " mmap" as_fn_append ac_func_list " munmap" as_fn_append ac_func_list " posix_fallocate" as_fn_append ac_func_list " sigaction" +as_fn_append ac_func_list " strsignal" as_fn_append ac_func_list " time" as_fn_append ac_func_list " truncate" as_fn_append ac_header_list " termios.h" @@ -3942,6 +3943,8 @@ done + + @@ -11184,7 +11187,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 11187 "configure" +#line 11190 "configure" #include "confdefs.h" #if HAVE_DLFCN_H @@ -11290,7 +11293,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 11293 "configure" +#line 11296 "configure" #include "confdefs.h" #if HAVE_DLFCN_H diff --git a/sim/m32r/ChangeLog b/sim/m32r/ChangeLog index 3cdcc24debe..b0aa17f233f 100644 --- a/sim/m32r/ChangeLog +++ b/sim/m32r/ChangeLog @@ -1,3 +1,7 @@ +2021-05-01 Mike Frysinger + + * config.in, configure: Regenerate. + 2021-04-26 Mike Frysinger * Makefile.in (NL_TARGET): Delete. diff --git a/sim/m32r/config.in b/sim/m32r/config.in index 8d37b72597d..c694fde2126 100644 --- a/sim/m32r/config.in +++ b/sim/m32r/config.in @@ -73,6 +73,9 @@ /* Define to 1 if you have the header file. */ #undef HAVE_STRING_H +/* Define to 1 if you have the `strsignal' function. */ +#undef HAVE_STRSIGNAL + /* Define to 1 if `st_atime' is a member of `struct stat'. */ #undef HAVE_STRUCT_STAT_ST_ATIME diff --git a/sim/m32r/configure b/sim/m32r/configure index 983afc6ba76..75efb5c2001 100755 --- a/sim/m32r/configure +++ b/sim/m32r/configure @@ -2318,6 +2318,7 @@ as_fn_append ac_func_list " mmap" as_fn_append ac_func_list " munmap" as_fn_append ac_func_list " posix_fallocate" as_fn_append ac_func_list " sigaction" +as_fn_append ac_func_list " strsignal" as_fn_append ac_func_list " time" as_fn_append ac_func_list " truncate" # Check that the precious variables saved in the cache have kept the same @@ -3957,6 +3958,8 @@ done + + @@ -11199,7 +11202,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 11202 "configure" +#line 11205 "configure" #include "confdefs.h" #if HAVE_DLFCN_H @@ -11305,7 +11308,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 11308 "configure" +#line 11311 "configure" #include "confdefs.h" #if HAVE_DLFCN_H diff --git a/sim/m4/sim_ac_common.m4 b/sim/m4/sim_ac_common.m4 index 01825990bea..35fcbfc4199 100644 --- a/sim/m4/sim_ac_common.m4 +++ b/sim/m4/sim_ac_common.m4 @@ -60,6 +60,7 @@ AC_CHECK_FUNCS_ONCE(m4_flatten([ munmap posix_fallocate sigaction + strsignal time truncate ])) diff --git a/sim/m68hc11/ChangeLog b/sim/m68hc11/ChangeLog index 788ecfe4434..a9b6408aca7 100644 --- a/sim/m68hc11/ChangeLog +++ b/sim/m68hc11/ChangeLog @@ -1,3 +1,7 @@ +2021-05-01 Mike Frysinger + + * config.in, configure: Regenerate. + 2021-04-23 Mike Frysinger * configure.ac (SIM_AC_OPTION_HARDWARE): Delete first two args. diff --git a/sim/m68hc11/config.in b/sim/m68hc11/config.in index 8d37b72597d..c694fde2126 100644 --- a/sim/m68hc11/config.in +++ b/sim/m68hc11/config.in @@ -73,6 +73,9 @@ /* Define to 1 if you have the header file. */ #undef HAVE_STRING_H +/* Define to 1 if you have the `strsignal' function. */ +#undef HAVE_STRSIGNAL + /* Define to 1 if `st_atime' is a member of `struct stat'. */ #undef HAVE_STRUCT_STAT_ST_ATIME diff --git a/sim/m68hc11/configure b/sim/m68hc11/configure index e2e78f825fe..e876c063c65 100755 --- a/sim/m68hc11/configure +++ b/sim/m68hc11/configure @@ -2305,6 +2305,7 @@ as_fn_append ac_func_list " mmap" as_fn_append ac_func_list " munmap" as_fn_append ac_func_list " posix_fallocate" as_fn_append ac_func_list " sigaction" +as_fn_append ac_func_list " strsignal" as_fn_append ac_func_list " time" as_fn_append ac_func_list " truncate" # Check that the precious variables saved in the cache have kept the same @@ -3944,6 +3945,8 @@ done + + @@ -11186,7 +11189,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 11189 "configure" +#line 11192 "configure" #include "confdefs.h" #if HAVE_DLFCN_H @@ -11292,7 +11295,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 11295 "configure" +#line 11298 "configure" #include "confdefs.h" #if HAVE_DLFCN_H diff --git a/sim/mcore/ChangeLog b/sim/mcore/ChangeLog index 815cd1a7c69..9151895ac95 100644 --- a/sim/mcore/ChangeLog +++ b/sim/mcore/ChangeLog @@ -1,3 +1,7 @@ +2021-05-01 Mike Frysinger + + * config.in, configure: Regenerate. + 2021-04-26 Mike Frysinger * aclocal.m4, config.in, configure: Regenerate. diff --git a/sim/mcore/config.in b/sim/mcore/config.in index 8d37b72597d..c694fde2126 100644 --- a/sim/mcore/config.in +++ b/sim/mcore/config.in @@ -73,6 +73,9 @@ /* Define to 1 if you have the header file. */ #undef HAVE_STRING_H +/* Define to 1 if you have the `strsignal' function. */ +#undef HAVE_STRSIGNAL + /* Define to 1 if `st_atime' is a member of `struct stat'. */ #undef HAVE_STRUCT_STAT_ST_ATIME diff --git a/sim/mcore/configure b/sim/mcore/configure index afd78ba0457..8c995cf2a92 100755 --- a/sim/mcore/configure +++ b/sim/mcore/configure @@ -2305,6 +2305,7 @@ as_fn_append ac_func_list " mmap" as_fn_append ac_func_list " munmap" as_fn_append ac_func_list " posix_fallocate" as_fn_append ac_func_list " sigaction" +as_fn_append ac_func_list " strsignal" as_fn_append ac_func_list " time" as_fn_append ac_func_list " truncate" # Check that the precious variables saved in the cache have kept the same @@ -3944,6 +3945,8 @@ done + + @@ -11186,7 +11189,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 11189 "configure" +#line 11192 "configure" #include "confdefs.h" #if HAVE_DLFCN_H @@ -11292,7 +11295,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 11295 "configure" +#line 11298 "configure" #include "confdefs.h" #if HAVE_DLFCN_H diff --git a/sim/microblaze/ChangeLog b/sim/microblaze/ChangeLog index 5d6957b7101..5310e968bae 100644 --- a/sim/microblaze/ChangeLog +++ b/sim/microblaze/ChangeLog @@ -1,3 +1,7 @@ +2021-05-01 Mike Frysinger + + * config.in, configure: Regenerate. + 2021-04-26 Mike Frysinger * aclocal.m4, config.in, configure: Regenerate. diff --git a/sim/microblaze/config.in b/sim/microblaze/config.in index 8d37b72597d..c694fde2126 100644 --- a/sim/microblaze/config.in +++ b/sim/microblaze/config.in @@ -73,6 +73,9 @@ /* Define to 1 if you have the header file. */ #undef HAVE_STRING_H +/* Define to 1 if you have the `strsignal' function. */ +#undef HAVE_STRSIGNAL + /* Define to 1 if `st_atime' is a member of `struct stat'. */ #undef HAVE_STRUCT_STAT_ST_ATIME diff --git a/sim/microblaze/configure b/sim/microblaze/configure index 8cabf9261bf..2b838775b0d 100755 --- a/sim/microblaze/configure +++ b/sim/microblaze/configure @@ -2305,6 +2305,7 @@ as_fn_append ac_func_list " mmap" as_fn_append ac_func_list " munmap" as_fn_append ac_func_list " posix_fallocate" as_fn_append ac_func_list " sigaction" +as_fn_append ac_func_list " strsignal" as_fn_append ac_func_list " time" as_fn_append ac_func_list " truncate" # Check that the precious variables saved in the cache have kept the same @@ -3944,6 +3945,8 @@ done + + @@ -11186,7 +11189,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 11189 "configure" +#line 11192 "configure" #include "confdefs.h" #if HAVE_DLFCN_H @@ -11292,7 +11295,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 11295 "configure" +#line 11298 "configure" #include "confdefs.h" #if HAVE_DLFCN_H diff --git a/sim/mips/ChangeLog b/sim/mips/ChangeLog index 40c9ad5a6cb..c4434ac3268 100644 --- a/sim/mips/ChangeLog +++ b/sim/mips/ChangeLog @@ -1,3 +1,7 @@ +2021-05-01 Mike Frysinger + + * config.in, configure: Regenerate. + 2021-04-23 Mike Frysinger * configure.ac (hw_enabled): Delete. diff --git a/sim/mips/config.in b/sim/mips/config.in index 3f13deee8f3..b8e86160c77 100644 --- a/sim/mips/config.in +++ b/sim/mips/config.in @@ -82,6 +82,9 @@ /* Define to 1 if you have the header file. */ #undef HAVE_STRING_H +/* Define to 1 if you have the `strsignal' function. */ +#undef HAVE_STRSIGNAL + /* Define to 1 if `st_atime' is a member of `struct stat'. */ #undef HAVE_STRUCT_STAT_ST_ATIME diff --git a/sim/mips/configure b/sim/mips/configure index 85e0832a876..f7afb055460 100755 --- a/sim/mips/configure +++ b/sim/mips/configure @@ -2335,6 +2335,7 @@ as_fn_append ac_func_list " mmap" as_fn_append ac_func_list " munmap" as_fn_append ac_func_list " posix_fallocate" as_fn_append ac_func_list " sigaction" +as_fn_append ac_func_list " strsignal" as_fn_append ac_func_list " time" as_fn_append ac_func_list " truncate" # Check that the precious variables saved in the cache have kept the same @@ -3974,6 +3975,8 @@ done + + @@ -11216,7 +11219,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 11219 "configure" +#line 11222 "configure" #include "confdefs.h" #if HAVE_DLFCN_H @@ -11322,7 +11325,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 11325 "configure" +#line 11328 "configure" #include "confdefs.h" #if HAVE_DLFCN_H diff --git a/sim/mn10300/ChangeLog b/sim/mn10300/ChangeLog index e0fcfcdd7ff..04a2ccbd41c 100644 --- a/sim/mn10300/ChangeLog +++ b/sim/mn10300/ChangeLog @@ -1,3 +1,7 @@ +2021-05-01 Mike Frysinger + + * config.in, configure: Regenerate. + 2021-04-26 Mike Frysinger * Makefile.in (NL_TARGET): Delete. diff --git a/sim/mn10300/config.in b/sim/mn10300/config.in index 8d37b72597d..c694fde2126 100644 --- a/sim/mn10300/config.in +++ b/sim/mn10300/config.in @@ -73,6 +73,9 @@ /* Define to 1 if you have the header file. */ #undef HAVE_STRING_H +/* Define to 1 if you have the `strsignal' function. */ +#undef HAVE_STRSIGNAL + /* Define to 1 if `st_atime' is a member of `struct stat'. */ #undef HAVE_STRUCT_STAT_ST_ATIME diff --git a/sim/mn10300/configure b/sim/mn10300/configure index f7e634e8f78..c10fb16f854 100755 --- a/sim/mn10300/configure +++ b/sim/mn10300/configure @@ -2311,6 +2311,7 @@ as_fn_append ac_func_list " mmap" as_fn_append ac_func_list " munmap" as_fn_append ac_func_list " posix_fallocate" as_fn_append ac_func_list " sigaction" +as_fn_append ac_func_list " strsignal" as_fn_append ac_func_list " time" as_fn_append ac_func_list " truncate" # Check that the precious variables saved in the cache have kept the same @@ -3950,6 +3951,8 @@ done + + @@ -11192,7 +11195,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 11195 "configure" +#line 11198 "configure" #include "confdefs.h" #if HAVE_DLFCN_H @@ -11298,7 +11301,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 11301 "configure" +#line 11304 "configure" #include "confdefs.h" #if HAVE_DLFCN_H diff --git a/sim/moxie/ChangeLog b/sim/moxie/ChangeLog index 6fb2cddd04a..c85e434d47f 100644 --- a/sim/moxie/ChangeLog +++ b/sim/moxie/ChangeLog @@ -1,3 +1,7 @@ +2021-05-01 Mike Frysinger + + * config.in, configure: Regenerate. + 2021-04-26 Mike Frysinger * Makefile.in (NL_TARGET): Delete. diff --git a/sim/moxie/config.in b/sim/moxie/config.in index 8d37b72597d..c694fde2126 100644 --- a/sim/moxie/config.in +++ b/sim/moxie/config.in @@ -73,6 +73,9 @@ /* Define to 1 if you have the header file. */ #undef HAVE_STRING_H +/* Define to 1 if you have the `strsignal' function. */ +#undef HAVE_STRSIGNAL + /* Define to 1 if `st_atime' is a member of `struct stat'. */ #undef HAVE_STRUCT_STAT_ST_ATIME diff --git a/sim/moxie/configure b/sim/moxie/configure index 0314c647517..15e36ee31f2 100755 --- a/sim/moxie/configure +++ b/sim/moxie/configure @@ -2306,6 +2306,7 @@ as_fn_append ac_func_list " mmap" as_fn_append ac_func_list " munmap" as_fn_append ac_func_list " posix_fallocate" as_fn_append ac_func_list " sigaction" +as_fn_append ac_func_list " strsignal" as_fn_append ac_func_list " time" as_fn_append ac_func_list " truncate" # Check that the precious variables saved in the cache have kept the same @@ -3945,6 +3946,8 @@ done + + @@ -11187,7 +11190,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 11190 "configure" +#line 11193 "configure" #include "confdefs.h" #if HAVE_DLFCN_H @@ -11293,7 +11296,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 11296 "configure" +#line 11299 "configure" #include "confdefs.h" #if HAVE_DLFCN_H diff --git a/sim/msp430/ChangeLog b/sim/msp430/ChangeLog index 70997e5e8dc..47b27961b05 100644 --- a/sim/msp430/ChangeLog +++ b/sim/msp430/ChangeLog @@ -1,3 +1,7 @@ +2021-05-01 Mike Frysinger + + * config.in, configure: Regenerate. + 2021-04-26 Mike Frysinger * Makefile.in (NL_TARGET): Delete. diff --git a/sim/msp430/config.in b/sim/msp430/config.in index 8d37b72597d..c694fde2126 100644 --- a/sim/msp430/config.in +++ b/sim/msp430/config.in @@ -73,6 +73,9 @@ /* Define to 1 if you have the header file. */ #undef HAVE_STRING_H +/* Define to 1 if you have the `strsignal' function. */ +#undef HAVE_STRSIGNAL + /* Define to 1 if `st_atime' is a member of `struct stat'. */ #undef HAVE_STRUCT_STAT_ST_ATIME diff --git a/sim/msp430/configure b/sim/msp430/configure index 5c43b2964df..6bb27f7f4a7 100755 --- a/sim/msp430/configure +++ b/sim/msp430/configure @@ -2305,6 +2305,7 @@ as_fn_append ac_func_list " mmap" as_fn_append ac_func_list " munmap" as_fn_append ac_func_list " posix_fallocate" as_fn_append ac_func_list " sigaction" +as_fn_append ac_func_list " strsignal" as_fn_append ac_func_list " time" as_fn_append ac_func_list " truncate" # Check that the precious variables saved in the cache have kept the same @@ -3944,6 +3945,8 @@ done + + @@ -11186,7 +11189,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 11189 "configure" +#line 11192 "configure" #include "confdefs.h" #if HAVE_DLFCN_H @@ -11292,7 +11295,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 11295 "configure" +#line 11298 "configure" #include "confdefs.h" #if HAVE_DLFCN_H diff --git a/sim/or1k/ChangeLog b/sim/or1k/ChangeLog index dd34d45653c..c79f22a139d 100644 --- a/sim/or1k/ChangeLog +++ b/sim/or1k/ChangeLog @@ -1,3 +1,7 @@ +2021-05-01 Mike Frysinger + + * config.in, configure: Regenerate. + 2021-04-26 Mike Frysinger * aclocal.m4, config.in, configure: Regenerate. diff --git a/sim/or1k/config.in b/sim/or1k/config.in index 8d37b72597d..c694fde2126 100644 --- a/sim/or1k/config.in +++ b/sim/or1k/config.in @@ -73,6 +73,9 @@ /* Define to 1 if you have the header file. */ #undef HAVE_STRING_H +/* Define to 1 if you have the `strsignal' function. */ +#undef HAVE_STRSIGNAL + /* Define to 1 if `st_atime' is a member of `struct stat'. */ #undef HAVE_STRUCT_STAT_ST_ATIME diff --git a/sim/or1k/configure b/sim/or1k/configure index 9e2040e1969..a4242d313a6 100755 --- a/sim/or1k/configure +++ b/sim/or1k/configure @@ -2318,6 +2318,7 @@ as_fn_append ac_func_list " mmap" as_fn_append ac_func_list " munmap" as_fn_append ac_func_list " posix_fallocate" as_fn_append ac_func_list " sigaction" +as_fn_append ac_func_list " strsignal" as_fn_append ac_func_list " time" as_fn_append ac_func_list " truncate" # Check that the precious variables saved in the cache have kept the same @@ -3957,6 +3958,8 @@ done + + @@ -11199,7 +11202,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 11202 "configure" +#line 11205 "configure" #include "confdefs.h" #if HAVE_DLFCN_H @@ -11305,7 +11308,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 11308 "configure" +#line 11311 "configure" #include "confdefs.h" #if HAVE_DLFCN_H diff --git a/sim/pru/ChangeLog b/sim/pru/ChangeLog index 437300e9dea..9f5464ab6dc 100644 --- a/sim/pru/ChangeLog +++ b/sim/pru/ChangeLog @@ -1,3 +1,7 @@ +2021-05-01 Mike Frysinger + + * config.in, configure: Regenerate. + 2021-04-26 Mike Frysinger * Makefile.in (NL_TARGET): Delete. diff --git a/sim/pru/config.in b/sim/pru/config.in index 8d37b72597d..c694fde2126 100644 --- a/sim/pru/config.in +++ b/sim/pru/config.in @@ -73,6 +73,9 @@ /* Define to 1 if you have the header file. */ #undef HAVE_STRING_H +/* Define to 1 if you have the `strsignal' function. */ +#undef HAVE_STRSIGNAL + /* Define to 1 if `st_atime' is a member of `struct stat'. */ #undef HAVE_STRUCT_STAT_ST_ATIME diff --git a/sim/pru/configure b/sim/pru/configure index 5c43b2964df..6bb27f7f4a7 100755 --- a/sim/pru/configure +++ b/sim/pru/configure @@ -2305,6 +2305,7 @@ as_fn_append ac_func_list " mmap" as_fn_append ac_func_list " munmap" as_fn_append ac_func_list " posix_fallocate" as_fn_append ac_func_list " sigaction" +as_fn_append ac_func_list " strsignal" as_fn_append ac_func_list " time" as_fn_append ac_func_list " truncate" # Check that the precious variables saved in the cache have kept the same @@ -3944,6 +3945,8 @@ done + + @@ -11186,7 +11189,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 11189 "configure" +#line 11192 "configure" #include "confdefs.h" #if HAVE_DLFCN_H @@ -11292,7 +11295,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 11295 "configure" +#line 11298 "configure" #include "confdefs.h" #if HAVE_DLFCN_H diff --git a/sim/riscv/ChangeLog b/sim/riscv/ChangeLog index 367faac9d4e..0b86f385d91 100644 --- a/sim/riscv/ChangeLog +++ b/sim/riscv/ChangeLog @@ -1,3 +1,7 @@ +2021-05-01 Mike Frysinger + + * config.in, configure: Regenerate. + 2021-05-01 Mike Frysinger * sim-main.c (mulhu): Check if __SIZEOF_INT128__ is defined. diff --git a/sim/riscv/config.in b/sim/riscv/config.in index 8d37b72597d..c694fde2126 100644 --- a/sim/riscv/config.in +++ b/sim/riscv/config.in @@ -73,6 +73,9 @@ /* Define to 1 if you have the header file. */ #undef HAVE_STRING_H +/* Define to 1 if you have the `strsignal' function. */ +#undef HAVE_STRSIGNAL + /* Define to 1 if `st_atime' is a member of `struct stat'. */ #undef HAVE_STRUCT_STAT_ST_ATIME diff --git a/sim/riscv/configure b/sim/riscv/configure index 96f4fff56a6..68c63a78bfa 100755 --- a/sim/riscv/configure +++ b/sim/riscv/configure @@ -2310,6 +2310,7 @@ as_fn_append ac_func_list " mmap" as_fn_append ac_func_list " munmap" as_fn_append ac_func_list " posix_fallocate" as_fn_append ac_func_list " sigaction" +as_fn_append ac_func_list " strsignal" as_fn_append ac_func_list " time" as_fn_append ac_func_list " truncate" # Check that the precious variables saved in the cache have kept the same @@ -3949,6 +3950,8 @@ done + + @@ -11191,7 +11194,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 11194 "configure" +#line 11197 "configure" #include "confdefs.h" #if HAVE_DLFCN_H @@ -11297,7 +11300,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 11300 "configure" +#line 11303 "configure" #include "confdefs.h" #if HAVE_DLFCN_H diff --git a/sim/rl78/ChangeLog b/sim/rl78/ChangeLog index 4adb625dbf1..9d70041b907 100644 --- a/sim/rl78/ChangeLog +++ b/sim/rl78/ChangeLog @@ -1,3 +1,7 @@ +2021-05-01 Mike Frysinger + + * config.in, configure: Regenerate. + 2021-04-26 Mike Frysinger * aclocal.m4, config.in, configure: Regenerate. diff --git a/sim/rl78/config.in b/sim/rl78/config.in index 8d37b72597d..c694fde2126 100644 --- a/sim/rl78/config.in +++ b/sim/rl78/config.in @@ -73,6 +73,9 @@ /* Define to 1 if you have the header file. */ #undef HAVE_STRING_H +/* Define to 1 if you have the `strsignal' function. */ +#undef HAVE_STRSIGNAL + /* Define to 1 if `st_atime' is a member of `struct stat'. */ #undef HAVE_STRUCT_STAT_ST_ATIME diff --git a/sim/rl78/configure b/sim/rl78/configure index 0a612701e3a..e12101440bf 100755 --- a/sim/rl78/configure +++ b/sim/rl78/configure @@ -2298,6 +2298,7 @@ as_fn_append ac_func_list " mmap" as_fn_append ac_func_list " munmap" as_fn_append ac_func_list " posix_fallocate" as_fn_append ac_func_list " sigaction" +as_fn_append ac_func_list " strsignal" as_fn_append ac_func_list " time" as_fn_append ac_func_list " truncate" # Check that the precious variables saved in the cache have kept the same @@ -3937,6 +3938,8 @@ done + + @@ -11179,7 +11182,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 11182 "configure" +#line 11185 "configure" #include "confdefs.h" #if HAVE_DLFCN_H @@ -11285,7 +11288,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 11288 "configure" +#line 11291 "configure" #include "confdefs.h" #if HAVE_DLFCN_H diff --git a/sim/rx/ChangeLog b/sim/rx/ChangeLog index 633ed86780c..d49ff89c57b 100644 --- a/sim/rx/ChangeLog +++ b/sim/rx/ChangeLog @@ -1,3 +1,7 @@ +2021-05-01 Mike Frysinger + + * config.in, configure: Regenerate. + 2021-05-01 Mike Frysinger * load.c (rx_load): Cast size to long. diff --git a/sim/rx/config.in b/sim/rx/config.in index 7cb68b3f535..58ef4f31dff 100644 --- a/sim/rx/config.in +++ b/sim/rx/config.in @@ -79,6 +79,9 @@ /* Define to 1 if you have the header file. */ #undef HAVE_STRING_H +/* Define to 1 if you have the `strsignal' function. */ +#undef HAVE_STRSIGNAL + /* Define to 1 if `st_atime' is a member of `struct stat'. */ #undef HAVE_STRUCT_STAT_ST_ATIME diff --git a/sim/rx/configure b/sim/rx/configure index e227982e361..5339a32275a 100755 --- a/sim/rx/configure +++ b/sim/rx/configure @@ -2303,6 +2303,7 @@ as_fn_append ac_func_list " mmap" as_fn_append ac_func_list " munmap" as_fn_append ac_func_list " posix_fallocate" as_fn_append ac_func_list " sigaction" +as_fn_append ac_func_list " strsignal" as_fn_append ac_func_list " time" as_fn_append ac_func_list " truncate" # Check that the precious variables saved in the cache have kept the same @@ -3942,6 +3943,8 @@ done + + @@ -11184,7 +11187,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 11187 "configure" +#line 11190 "configure" #include "confdefs.h" #if HAVE_DLFCN_H @@ -11290,7 +11293,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 11293 "configure" +#line 11296 "configure" #include "confdefs.h" #if HAVE_DLFCN_H diff --git a/sim/sh/ChangeLog b/sim/sh/ChangeLog index d89fe2802f4..c2875a7e92b 100644 --- a/sim/sh/ChangeLog +++ b/sim/sh/ChangeLog @@ -1,3 +1,7 @@ +2021-05-01 Mike Frysinger + + * config.in, configure: Regenerate. + 2021-04-26 Mike Frysinger * aclocal.m4, config.in, configure: Regenerate. diff --git a/sim/sh/config.in b/sim/sh/config.in index 8d37b72597d..c694fde2126 100644 --- a/sim/sh/config.in +++ b/sim/sh/config.in @@ -73,6 +73,9 @@ /* Define to 1 if you have the header file. */ #undef HAVE_STRING_H +/* Define to 1 if you have the `strsignal' function. */ +#undef HAVE_STRSIGNAL + /* Define to 1 if `st_atime' is a member of `struct stat'. */ #undef HAVE_STRUCT_STAT_ST_ATIME diff --git a/sim/sh/configure b/sim/sh/configure index afd78ba0457..8c995cf2a92 100755 --- a/sim/sh/configure +++ b/sim/sh/configure @@ -2305,6 +2305,7 @@ as_fn_append ac_func_list " mmap" as_fn_append ac_func_list " munmap" as_fn_append ac_func_list " posix_fallocate" as_fn_append ac_func_list " sigaction" +as_fn_append ac_func_list " strsignal" as_fn_append ac_func_list " time" as_fn_append ac_func_list " truncate" # Check that the precious variables saved in the cache have kept the same @@ -3944,6 +3945,8 @@ done + + @@ -11186,7 +11189,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 11189 "configure" +#line 11192 "configure" #include "confdefs.h" #if HAVE_DLFCN_H @@ -11292,7 +11295,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 11295 "configure" +#line 11298 "configure" #include "confdefs.h" #if HAVE_DLFCN_H diff --git a/sim/v850/ChangeLog b/sim/v850/ChangeLog index d46aa599e9f..643d28b017a 100644 --- a/sim/v850/ChangeLog +++ b/sim/v850/ChangeLog @@ -1,3 +1,7 @@ +2021-05-01 Mike Frysinger + + * config.in, configure: Regenerate. + 2021-04-26 Mike Frysinger * aclocal.m4, config.in, configure: Regenerate. diff --git a/sim/v850/config.in b/sim/v850/config.in index 8249d7cbd87..889d64c4d65 100644 --- a/sim/v850/config.in +++ b/sim/v850/config.in @@ -88,6 +88,9 @@ /* Define to 1 if you have the header file. */ #undef HAVE_STRING_H +/* Define to 1 if you have the `strsignal' function. */ +#undef HAVE_STRSIGNAL + /* Define to 1 if `st_atime' is a member of `struct stat'. */ #undef HAVE_STRUCT_STAT_ST_ATIME diff --git a/sim/v850/configure b/sim/v850/configure index d5941decb1e..32fd5122ebe 100755 --- a/sim/v850/configure +++ b/sim/v850/configure @@ -2311,6 +2311,7 @@ as_fn_append ac_func_list " mmap" as_fn_append ac_func_list " munmap" as_fn_append ac_func_list " posix_fallocate" as_fn_append ac_func_list " sigaction" +as_fn_append ac_func_list " strsignal" as_fn_append ac_func_list " time" as_fn_append ac_func_list " truncate" as_fn_append ac_func_list " chmod" @@ -3957,6 +3958,8 @@ done + + @@ -11199,7 +11202,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 11202 "configure" +#line 11205 "configure" #include "confdefs.h" #if HAVE_DLFCN_H @@ -11305,7 +11308,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 11308 "configure" +#line 11311 "configure" #include "confdefs.h" #if HAVE_DLFCN_H -- 2.30.2