sim: ppc: drop obsolete USE_WIN32API check
authorMike Frysinger <vapier@gentoo.org>
Wed, 9 Nov 2022 17:11:17 +0000 (00:11 +0700)
committerMike Frysinger <vapier@gentoo.org>
Wed, 9 Nov 2022 17:13:36 +0000 (00:13 +0700)
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
sim/ppc/configure
sim/ppc/configure.ac
sim/ppc/emul_unix.c

index 442835a9a76f364ea5faac6f461dfacae6810c92..4f28271351ae3dc0f2d2665da35b5b07f17ee260 100644 (file)
@@ -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
index df95a6febf6ccb9f31fa13ee55d4d66f542039ff..39a7ac934cebff4436e35bb08756d87a752f0307 100755 (executable)
@@ -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"
 
 
index 542e8a105fbb633930a1c91b208485c5d49baa65..cd9edd0de4cd865e211d3686d2d1484c74e8245e 100644 (file)
@@ -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)
 
 
index 57691d4befcd3bb0e3225c66f006b4c0d11376ac..1d8b7814ffc62d0cdada4e316cacb57872fd4282 100644 (file)
@@ -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