vcpkg/ports/libmagic/0003-Fix-WIN32-macro-checks.patch
Long Nguyen a29126f785
[tre, libmagic] Windows + mingw support (#17769)
* [tre] mingw support

* [libmagic] Windows support

* [libmagic] Apply @Neumann-A suggestions

* [libmagic] Add host dependency

Co-authored-by: Jack·Boos·Yu <47264268+JackBoosY@users.noreply.github.com>

* [libmagic] Copy the magic file to the corresponding tools dir

* [ci baseline] libmagic now passes

* Update ports/libmagic/portfile.cmake

* [libmagic] Import patch from MSYS2

* [vcpkg baseline] Update libmagic, tre

Co-authored-by: Jack·Boos·Yu <47264268+JackBoosY@users.noreply.github.com>
Co-authored-by: nicole mazzuca <83086508+strega-nil-ms@users.noreply.github.com>
2021-05-28 10:09:56 -07:00

44 lines
1.1 KiB
Diff

From 2fffeb273ea46c1e91536f3d660982de785c8d49 Mon Sep 17 00:00:00 2001
From: Long Nguyen <nguyen.long.908132@gmail.com>
Date: Sat, 8 May 2021 20:52:59 +0700
Subject: [PATCH 03/14] Fix WIN32 macro checks
---
src/file.h | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/src/file.h b/src/file.h
index 299ac0c..2c365a6 100644
--- a/src/file.h
+++ b/src/file.h
@@ -82,7 +82,7 @@
#include <tre/regex.h>
#include <time.h>
#include <sys/types.h>
-#ifndef WIN32
+#ifndef _WIN32
#include <sys/param.h>
#endif
/* Do this here and now, because struct stat gets re-defined on solaris */
@@ -95,7 +95,7 @@
#define MAGIC "/etc/magic"
#endif
-#if defined(__EMX__) || defined (WIN32)
+#if defined(__EMX__) || defined (_WIN32)
#define PATHSEP ';'
#else
#define PATHSEP ':'
@@ -103,7 +103,7 @@
#define private static
-#if HAVE_VISIBILITY && !defined(WIN32)
+#if HAVE_VISIBILITY && !defined(_WIN32)
#define public __attribute__ ((__visibility__("default")))
#ifndef protected
#define protected __attribute__ ((__visibility__("hidden")))
--
2.29.2.windows.2