summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRan Benita <ran@unusedvar.com>2023-04-11 23:24:47 +0300
committerRan Benita <ran@unusedvar.com>2023-04-11 23:29:25 +0300
commitbd79a960f596574e9c2ea59347f9afac469ef532 (patch)
tree77a5c458c1d2ce7d07a404a69f7575caad5196ed
parent13d4b7f6417795b9ec634a766d0bf6afbf82c946 (diff)
downloadxorg-lib-libxkbcommon-bd79a960f596574e9c2ea59347f9afac469ef532.tar.gz
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 <ran@unusedvar.com>
-rw-r--r--bench/bench.c2
-rw-r--r--src/utils.h2
-rw-r--r--test/common.c6
-rw-r--r--test/test.h2
-rw-r--r--tools/tools-common.c4
-rw-r--r--tools/tools-common.h2
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 <sys/time.h>
#else
#include <windows.h>
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 <direct.h>
# include <io.h>
# 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 <stdio.h>
#include <sys/types.h>
#include <sys/stat.h>
-#ifdef _MSC_VER
+#ifdef _WIN32
#include <io.h>
#include <windows.h>
#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 <string.h>
#include <sys/types.h>
#include <sys/stat.h>
-#ifdef _MSC_VER
+#ifdef _WIN32
#include <io.h>
#include <windows.h>
#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