From 31b40f11f1cf7c79eff80bed214d3350a9a209a4 Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Thu, 10 Nov 2022 00:11:17 +0700 Subject: 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. --- sim/ppc/config.in | 5 ----- sim/ppc/configure | 8 -------- sim/ppc/configure.ac | 10 ---------- sim/ppc/emul_unix.c | 4 ---- 4 files changed, 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 -- cgit v1.1