aboutsummaryrefslogtreecommitdiff
path: root/sim/sh
diff options
context:
space:
mode:
Diffstat (limited to 'sim/sh')
-rw-r--r--sim/sh/ChangeLog5
-rw-r--r--sim/sh/config.in6
-rwxr-xr-xsim/sh/configure10
-rw-r--r--sim/sh/interp.c2
4 files changed, 7 insertions, 16 deletions
diff --git a/sim/sh/ChangeLog b/sim/sh/ChangeLog
index 209d8e8..98d1f35 100644
--- a/sim/sh/ChangeLog
+++ b/sim/sh/ChangeLog
@@ -1,5 +1,10 @@
2021-04-22 Tom Tromey <tom@tromey.com>
+ * interp.c: Update includes.
+ * configure, config.in: Rebuild.
+
+2021-04-22 Tom Tromey <tom@tromey.com>
+
* Makefile.in (SIM_EXTRA_DEPS): New variable.
(interp.o): Remove.
diff --git a/sim/sh/config.in b/sim/sh/config.in
index cb5ea1b..2416b7f 100644
--- a/sim/sh/config.in
+++ b/sim/sh/config.in
@@ -115,12 +115,6 @@
/* Define to 1 if you have the <sys/stat.h> header file. */
#undef HAVE_SYS_STAT_H
-/* Define to 1 if you have the <sys/times.h> header file. */
-#undef HAVE_SYS_TIMES_H
-
-/* Define to 1 if you have the <sys/time.h> header file. */
-#undef HAVE_SYS_TIME_H
-
/* Define to 1 if you have the <sys/types.h> header file. */
#undef HAVE_SYS_TYPES_H
diff --git a/sim/sh/configure b/sim/sh/configure
index faf0ca6..25f04f5 100755
--- a/sim/sh/configure
+++ b/sim/sh/configure
@@ -2293,8 +2293,6 @@ as_fn_append ac_header_list " fpu_control.h"
as_fn_append ac_header_list " unistd.h"
as_fn_append ac_header_list " sys/mman.h"
as_fn_append ac_header_list " sys/resource.h"
-as_fn_append ac_header_list " sys/time.h"
-as_fn_append ac_header_list " sys/times.h"
as_fn_append ac_header_list " sys/stat.h"
as_fn_append ac_func_list " __setfpucw"
as_fn_append ac_func_list " ftruncate"
@@ -3914,10 +3912,6 @@ done
-
-
-
-
for ac_func in $ac_func_list
do :
as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh`
@@ -11189,7 +11183,7 @@ else
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
lt_status=$lt_dlunknown
cat > conftest.$ac_ext <<_LT_EOF
-#line 11192 "configure"
+#line 11186 "configure"
#include "confdefs.h"
#if HAVE_DLFCN_H
@@ -11295,7 +11289,7 @@ else
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
lt_status=$lt_dlunknown
cat > conftest.$ac_ext <<_LT_EOF
-#line 11298 "configure"
+#line 11292 "configure"
#include "confdefs.h"
#if HAVE_DLFCN_H
diff --git a/sim/sh/interp.c b/sim/sh/interp.c
index 2fafcfd..fa361ba 100644
--- a/sim/sh/interp.c
+++ b/sim/sh/interp.c
@@ -43,9 +43,7 @@
#include <sys/stat.h>
#endif
#include <time.h>
-#ifdef HAVE_SYS_TIME_H
#include <sys/time.h>
-#endif
#ifndef _WIN32
#include <utime.h>
#include <sys/wait.h>