From e09790dae7f9a49a4d9788520dc6e96dc97dfc61 Mon Sep 17 00:00:00 2001 From: Martin Lisowski Date: Tue, 7 Jan 2025 10:53:49 +0100 Subject: [PATCH] Enable building script engine on Windows MSYS platform --- util/script.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/util/script.c b/util/script.c index 2cd45fa..1bdc2dc 100644 --- a/util/script.c +++ b/util/script.c @@ -467,7 +467,7 @@ uintptr_t HeapAllocate(ExecutionContext *context); // --------------------------------- Platform layer definitions. -#if defined(_WIN32) || defined(__linux__) || defined(__APPLE__) +#if defined(_WIN32) || defined(__linux__) || defined(__APPLE__) || defined(__MSYS__) #include #define Assert assert #endif @@ -6807,7 +6807,7 @@ int ExternalCharacterToByte(ExecutionContext *context, Value *returnValue) { // --------------------------------- Platform layer. -#if defined(_WIN32) || defined(__linux__) || defined(__APPLE__) +#if defined(_WIN32) || defined(__linux__) || defined(__APPLE__) || defined(__MSYS__) #ifdef _WIN32 #include