svn commit: r399204 - head/devel/android-tools-adb/files

Jan Beich jbeich at FreeBSD.org
Tue Oct 13 18:03:00 UTC 2015


Author: jbeich
Date: Tue Oct 13 18:02:59 2015
New Revision: 399204
URL: https://svnweb.freebsd.org/changeset/ports/399204

Log:
  devel/android-tools-adb: explicitly include stdint.h for intptr_t

Modified:
  head/devel/android-tools-adb/files/patch-libcutils_threads.c   (contents, props changed)

Modified: head/devel/android-tools-adb/files/patch-libcutils_threads.c
==============================================================================
--- head/devel/android-tools-adb/files/patch-libcutils_threads.c	Tue Oct 13 18:02:39 2015	(r399203)
+++ head/devel/android-tools-adb/files/patch-libcutils_threads.c	Tue Oct 13 18:02:59 2015	(r399204)
@@ -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.


More information about the svn-ports-head mailing list