summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--devel/android-tools-adb/files/patch-libcutils_threads.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/devel/android-tools-adb/files/patch-libcutils_threads.c b/devel/android-tools-adb/files/patch-libcutils_threads.c
index a275276f095d..bdacbd2ca7a9 100644
--- a/devel/android-tools-adb/files/patch-libcutils_threads.c
+++ b/devel/android-tools-adb/files/patch-libcutils_threads.c
@@ -1,6 +1,6 @@
--- libcutils/threads.c.orig 2015-06-17 22:20:38 UTC
+++ libcutils/threads.c
-@@ -29,6 +29,14 @@
+@@ -29,6 +29,16 @@
#include <unistd.h>
#elif defined(_WIN32)
#include <windows.h>
@@ -12,6 +12,8 @@
+#include <pthread_np.h>
+#elif defined(__NetBSD__)
+#include <lwp.h>
++#else
++#include <stdint.h>
#endif
// No definition needed for Android because we'll just pick up bionic's copy.