mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-25 01:19:08 +08:00
f17f0bffde
* [libmagic] Update to version 5.45. * Update patches. * Update version database.
28 lines
880 B
Diff
28 lines
880 B
Diff
# From https://github.com/msys2/MINGW-packages/commit/3a51faadb8bacf06c7b7fd84b2ea80775d1a8b0d
|
|
|
|
# this is an advanced patch to fix building v5.38
|
|
# see for details
|
|
# this patch should be removed with the next version
|
|
diff --git a/src/compress.c b/src/compress.c
|
|
index 33ce2bc..f172eda 100644
|
|
--- a/src/compress.c
|
|
+++ b/src/compress.c
|
|
@@ -407,7 +407,7 @@
|
|
sread(int fd, void *buf, size_t n, int canbepipe __attribute__((__unused__)))
|
|
{
|
|
ssize_t rv;
|
|
-#if defined(FIONREAD) && !defined(__MINGW32__)
|
|
+#if defined(FIONREAD) && !defined(__MINGW32__) && !defined(WIN32)
|
|
int t = 0;
|
|
#endif
|
|
size_t rn = n;
|
|
@@ -418,7 +418,7 @@
|
|
if (fd == STDIN_FILENO)
|
|
goto nocheck;
|
|
|
|
-#if defined(FIONREAD) && !defined(__MINGW32__)
|
|
+#if defined(FIONREAD) && !defined(__MINGW32__) && !defined(WIN32)
|
|
if (canbepipe && (ioctl(fd, FIONREAD, &t) == -1 || t == 0)) {
|
|
#ifdef FD_ZERO
|
|
ssize_t cnt;
|