mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-24 03:09:00 +08:00
a29126f785
* [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>
31 lines
696 B
Diff
31 lines
696 B
Diff
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
|
|
|