mirror of
https://github.com/microsoft/vcpkg.git
synced 2025-01-04 16:17:13 +08:00
b1f65da6b2
* Fix libssh's file permission constants * Update version files * Disable building libssh on ARM64 Windows * Update version files * Update patch * Update patch * Update version files * Update patch * Update versions
15 lines
358 B
Diff
15 lines
358 B
Diff
diff --git a/src/misc.c b/src/misc.c
|
|
--- a/src/misc.c (revision 9941e89f307e73352d887cac14e4e26b481a0a82)
|
|
+++ b/src/misc.c (date 1675868320486)
|
|
@@ -24,6 +24,10 @@
|
|
|
|
#include "config.h"
|
|
|
|
+#ifdef __ANDROID__
|
|
+#define _S_IWRITE S_IWUSR
|
|
+#endif
|
|
+
|
|
#ifndef _WIN32
|
|
/* This is needed for a standard getpwuid_r on opensolaris */
|
|
#define _POSIX_PTHREAD_SEMANTICS
|