mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-27 19:19:01 +08:00
34 lines
712 B
Diff
34 lines
712 B
Diff
diff --git a/src/error.c b/src/error.c
|
|
index 055452e..0ce530a 100644
|
|
--- a/src/error.c
|
|
+++ b/src/error.c
|
|
@@ -32,7 +32,11 @@ Author: Ralph Mor, X Consortium
|
|
#include <X11/ICE/ICElib.h>
|
|
#include "ICElibint.h"
|
|
#include <stdio.h>
|
|
+#ifdef HAVE_UNISTD_H
|
|
#include <unistd.h>
|
|
+#elif _MSC_VER
|
|
+#include <process.h>
|
|
+#endif
|
|
#include <errno.h>
|
|
|
|
void
|
|
diff --git a/src/iceauth.c b/src/iceauth.c
|
|
index 5a4d400..4549f0e 100644
|
|
--- a/src/iceauth.c
|
|
+++ b/src/iceauth.c
|
|
@@ -39,7 +39,12 @@ Author: Ralph Mor, X Consortium
|
|
#include <stdlib.h> /* for arc4random_buf() */
|
|
#endif
|
|
|
|
+#ifdef HAVE_UNISTD_H
|
|
#include <unistd.h>
|
|
+#elif _MSC_VER
|
|
+#include <process.h>
|
|
+#define ITIMER_REAL
|
|
+#endif
|
|
|
|
static int was_called_state;
|
|
|