aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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