shithub: libvpx

Download patch

ref: 3653fb473a66258c74d3a550e66c8c1e8f95368c
parent: 7989bb7fe74aa1a3e477b2228e32424376c2c5e9
author: Fritz Koenig <frkoenig@google.com>
date: Thu Feb 16 07:38:17 EST 2012

Include path fix for building against Android NDK.

cpu-features.h is not in the common paths, add
to the cflags for Android.

Change-Id: Icbafc7600d72f6b59ffb030f6ab80ee6860332bb

--- a/build/make/configure.sh
+++ b/build/make/configure.sh
@@ -796,6 +796,8 @@
             add_cflags "--sysroot=${alt_libc}"
             add_ldflags "--sysroot=${alt_libc}"
 
+            add_cflags "-I${SDK_PATH}/sources/android/cpufeatures/"
+
             enable pic
             soft_enable realtime_only
             if [ ${tgt_isa} == "armv7" ]; then
--