mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-24 17:39:00 +08:00
f5d8bf68b9
* [libudis86] Fix build error * update version * update CMakeLists.txt * update version * update portfile.cmake * update version Co-authored-by: Lily Wang <v-lilywang@microsoft.com>
38 lines
871 B
Diff
38 lines
871 B
Diff
diff --git a/libudis86/udis86.c b/libudis86/udis86.c
|
|
index e039c4e..8459012 100644
|
|
--- a/libudis86/udis86.c
|
|
+++ b/libudis86/udis86.c
|
|
@@ -34,6 +34,10 @@
|
|
# endif
|
|
#endif /* !__UD_STANDALONE__ */
|
|
|
|
+#if defined(__APPLE__)
|
|
+# include <string.h>
|
|
+#endif
|
|
+
|
|
static void ud_inp_init(struct ud *u);
|
|
|
|
/* =============================================================================
|
|
diff --git a/udcli/udcli.c b/udcli/udcli.c
|
|
index 9b044ca..ad1e4ab 100644
|
|
--- a/udcli/udcli.c
|
|
+++ b/udcli/udcli.c
|
|
@@ -27,13 +27,11 @@
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
#include <ctype.h>
|
|
-#ifdef _MSC_VER
|
|
-#include "..\udis86.h"
|
|
-#define PACKAGE_STRING "udis86 pre-1.8"
|
|
-#else
|
|
#include <udis86.h>
|
|
-#include <config.h>
|
|
-#endif
|
|
+#define PACKAGE_STRING "udis86 pre-1.8"
|
|
+#ifdef HAVE_CONFIG_H
|
|
+# include <config.h>
|
|
+#endif /* HAVE_CONFIG_H */
|
|
|
|
#if defined(__APPLE__)
|
|
# define FMT64 "ll"
|