From bd79a960f596574e9c2ea59347f9afac469ef532 Mon Sep 17 00:00:00 2001 From: Ran Benita Date: Tue, 11 Apr 2023 23:24:47 +0300 Subject: [PATCH] Possible fix for non-MSVC windows compilers `_MSC_VER` is specific to MSVC, but there can be other compilers targeting windows. Hopefully they do define `_WIN32`, so let's use that. Refs: https://github.com/xkbcommon/libxkbcommon/issues/305 Signed-off-by: Ran Benita --- bench/bench.c | 2 +- src/utils.h | 2 +- test/common.c | 6 +++--- test/test.h | 2 +- tools/tools-common.c | 4 ++-- tools/tools-common.h | 2 +- 6 files changed, 9 insertions(+), 9 deletions(-) diff --git a/bench/bench.c b/bench/bench.c index c28ac65..e6fb635 100644 --- a/bench/bench.c +++ b/bench/bench.c @@ -30,7 +30,7 @@ #include "bench.h" #include "../src/utils.h" -#ifndef _MSC_VER +#ifndef _WIN32 #include #else #include diff --git a/src/utils.h b/src/utils.h index c263635..eec7f10 100644 --- a/src/utils.h +++ b/src/utils.h @@ -40,7 +40,7 @@ # define F_OK 0 /* Test for existence. */ #endif -#ifdef _MSC_VER +#ifdef _WIN32 # include # include # ifndef S_ISDIR diff --git a/test/common.c b/test/common.c index 1d5a99d..cb911e8 100644 --- a/test/common.c +++ b/test/common.c @@ -37,7 +37,7 @@ #include #include #include -#ifdef _MSC_VER +#ifdef _WIN32 #include #include #else @@ -171,7 +171,7 @@ test_makedir(const char *parent, const char *path) dirname = asprintf_safe("%s/%s", parent, path); assert(dirname); -#ifdef _MSC_VER +#ifdef _WIN32 err = _mkdir(dirname); #else err = mkdir(dirname, 0777); @@ -184,7 +184,7 @@ test_makedir(const char *parent, const char *path) char * test_maketempdir(const char *template) { -#ifdef _MSC_VER +#ifdef _WIN32 const char *basetmp = getenv("TMP"); if (basetmp == NULL) { basetmp = getenv("TEMP"); diff --git a/test/test.h b/test/test.h index ba06deb..afeec78 100644 --- a/test/test.h +++ b/test/test.h @@ -88,7 +88,7 @@ test_compile_rules(struct xkb_context *context, const char *rules, const char *options); -#ifdef _MSC_VER +#ifdef _WIN32 #define setenv(varname, value, overwrite) _putenv_s((varname), (value)) #define unsetenv(varname) _putenv_s(varname, "") #endif diff --git a/tools/tools-common.c b/tools/tools-common.c index 254499d..63fce4e 100644 --- a/tools/tools-common.c +++ b/tools/tools-common.c @@ -39,7 +39,7 @@ #include #include #include -#ifdef _MSC_VER +#ifdef _WIN32 #include #include #else @@ -160,7 +160,7 @@ tools_print_state_changes(enum xkb_state_component changed) printf("]\n"); } -#ifdef _MSC_VER +#ifdef _WIN32 void tools_disable_stdin_echo(void) { diff --git a/tools/tools-common.h b/tools/tools-common.h index 780720a..0c16505 100644 --- a/tools/tools-common.h +++ b/tools/tools-common.h @@ -54,7 +54,7 @@ tools_enable_stdin_echo(void); int tools_exec_command(const char *prefix, int argc, char **argv); -#ifdef _MSC_VER +#ifdef _WIN32 #define setenv(varname, value, overwrite) _putenv_s((varname), (value)) #define unsetenv(varname) _putenv_s(varname, "") #endif