From 3203f2af9425f13ce2c4d99233a5fcdce6a0989c Mon Sep 17 00:00:00 2001 From: David 'Digit' Turner Date: Fri, 13 Jan 2012 14:17:29 +0100 Subject: [PATCH] media/mtp: Add missing LOCAL_C_INCLUDES One of the source files here is including which itself includes , a private C library header used to define the strftime_tz() extension (which used to be declared in but was moved there instead). Add a missing C include path to let our code compile as usual. Change-Id: I6aac2f1d3d15ad182679c81ff3f4febff74eb671 --- media/mtp/Android.mk | 3 +++ 1 file changed, 3 insertions(+) diff --git a/media/mtp/Android.mk b/media/mtp/Android.mk index e590babb485eb..fc7fc4fcb03bd 100644 --- a/media/mtp/Android.mk +++ b/media/mtp/Android.mk @@ -39,6 +39,9 @@ LOCAL_MODULE:= libmtp LOCAL_CFLAGS := -DMTP_DEVICE -DMTP_HOST +# Needed for +LOCAL_C_INCLUDES := bionic/libc/private + LOCAL_SHARED_LIBRARIES := libutils libcutils libusbhost libbinder include $(BUILD_SHARED_LIBRARY)