aboutsummaryrefslogtreecommitdiff
path: root/vcpkg/ports/libmagic/0007-Substitute-unistd-macros-for-MSVC.patch
blob: 726fbde7e6981dac5dbb3fa3c53bde99341101b7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
From 1106d1523ed44bcbcca90fc1fe9fa9400777d8fe Mon Sep 17 00:00:00 2001
From: Long Nguyen <nguyen.long.908132@gmail.com>
Date: Sun, 9 May 2021 10:28:49 +0700
Subject: [PATCH 07/14] Substitute unistd macros for MSVC

---
 src/file.h | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/src/file.h b/src/file.h
index 4aa9f60..5da838c 100644
--- a/src/file.h
+++ b/src/file.h
@@ -85,6 +85,13 @@
 #ifndef _WIN32
 #include <sys/param.h>
 #endif
+#ifdef _MSC_VER
+#include <io.h>
+#define R_OK 4
+#define W_OK 2
+#define X_OK R_OK
+#define F_OK 0
+#endif
 /* Do this here and now, because struct stat gets re-defined on solaris */
 #include <sys/stat.h>
 #include <stdarg.h>
-- 
2.29.2.windows.2