mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-24 14:29:06 +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>
33 lines
743 B
Diff
33 lines
743 B
Diff
From 15b0f505ff9eefd41b74ffdd4230355e933263ca Mon Sep 17 00:00:00 2001
|
|
From: Long Nguyen <nguyen.long.908132@gmail.com>
|
|
Date: Sun, 9 May 2021 17:45:50 +0700
|
|
Subject: [PATCH 11/14] Remove pipe related functions in funcs.c
|
|
|
|
---
|
|
src/funcs.c | 2 ++
|
|
1 file changed, 2 insertions(+)
|
|
|
|
diff --git a/src/funcs.c b/src/funcs.c
|
|
index b926625..b585486 100644
|
|
--- a/src/funcs.c
|
|
+++ b/src/funcs.c
|
|
@@ -809,6 +809,7 @@ file_print_guid(char *str, size_t len, const uint64_t *guid)
|
|
g->data4[6], g->data4[7]);
|
|
}
|
|
|
|
+#ifndef _WIN32
|
|
protected int
|
|
file_pipe_closexec(int *fds)
|
|
{
|
|
@@ -827,6 +828,7 @@ protected int
|
|
file_clear_closexec(int fd) {
|
|
return fcntl(fd, F_SETFD, 0);
|
|
}
|
|
+#endif
|
|
|
|
protected char *
|
|
file_strtrim(char *str)
|
|
--
|
|
2.29.2.windows.2
|
|
|