aboutsummaryrefslogtreecommitdiff
path: root/sim
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2022-11-10 00:11:17 +0700
committerMike Frysinger <vapier@gentoo.org>2022-11-10 00:13:36 +0700
commit31b40f11f1cf7c79eff80bed214d3350a9a209a4 (patch)
tree09ac466fbdc060d45151002d5fcc4d7fd96978f0 /sim
parent8263b346fa07e3f679b05a8b369d491af51e6de8 (diff)
downloadbinutils-31b40f11f1cf7c79eff80bed214d3350a9a209a4.zip
binutils-31b40f11f1cf7c79eff80bed214d3350a9a209a4.tar.gz
binutils-31b40f11f1cf7c79eff80bed214d3350a9a209a4.tar.bz2
sim: ppc: drop obsolete USE_WIN32API check
This controls only one thing: how to call mkdir(). The gnulib code already has a mkdir module that provides this exact logic for us, so punt the code entirely.
Diffstat (limited to 'sim')
-rw-r--r--sim/ppc/config.in5
-rwxr-xr-xsim/ppc/configure8
-rw-r--r--sim/ppc/configure.ac10
-rw-r--r--sim/ppc/emul_unix.c4
4 files changed, 0 insertions, 27 deletions
diff --git a/sim/ppc/config.in b/sim/ppc/config.in
index 442835a..4f28271 100644
--- a/sim/ppc/config.in
+++ b/sim/ppc/config.in
@@ -56,8 +56,3 @@
/* Define to 1 if you have the ANSI C header files. */
#undef STDC_HEADERS
-
-/* Define if we should use the Windows API, instead of the POSIX API. On
- Windows, we use the Windows API when building for MinGW, but the POSIX API
- when building for Cygwin. */
-#undef USE_WIN32API
diff --git a/sim/ppc/configure b/sim/ppc/configure
index df95a6f..39a7ac9 100755
--- a/sim/ppc/configure
+++ b/sim/ppc/configure
@@ -3543,14 +3543,6 @@ else
fi
-case ${host} in
- *mingw32*)
-
-$as_echo "#define USE_WIN32API 1" >>confdefs.h
-
- ;;
-esac
-
ac_config_headers="$ac_config_headers config.h:config.in"
diff --git a/sim/ppc/configure.ac b/sim/ppc/configure.ac
index 542e8a1..cd9edd0 100644
--- a/sim/ppc/configure.ac
+++ b/sim/ppc/configure.ac
@@ -381,16 +381,6 @@ if test x"$silent" != x"yes" && test x"$sim_xor_endian" != x""; then
fi],[sim_xor_endian=""])dnl
-case ${host} in
- *mingw32*)
- AC_DEFINE(USE_WIN32API, 1,
- [Define if we should use the Windows API, instead of the
- POSIX API. On Windows, we use the Windows API when
- building for MinGW, but the POSIX API when building
- for Cygwin.])
- ;;
-esac
-
AC_CONFIG_HEADER(config.h:config.in)
diff --git a/sim/ppc/emul_unix.c b/sim/ppc/emul_unix.c
index 57691d4..1d8b781 100644
--- a/sim/ppc/emul_unix.c
+++ b/sim/ppc/emul_unix.c
@@ -760,11 +760,7 @@ do_unix_mkdir(os_emul_data *emul,
if (WITH_TRACE && ppc_trace[trace_os_emul])
printf_filtered ("0x%lx [%s], 0%3o", (long)path_addr, path, mode);
-#ifdef USE_WIN32API
- status = mkdir(path);
-#else
status = mkdir(path, mode);
-#endif
emul_write_status(processor, status, errno);
}
#endif