shithub: libvpx

Download patch

ref: 9ebc99fcac4fe02f8814271b4904fff075b02234
parent: a288c928aecb2d23a8045d341990468592ddb4dd
author: Johann <johann.koenig@duck.com>
date: Thu May 2 08:32:02 EDT 2013

Add __inline__ to INLINE definition.

When using 'always_inline' 'inline' should be specified as well.

Thanks to Digit for identifying this:
https://chromiumcodereview.appspot.com/14820003/

Change-Id: If1647fac91b85ecabe6d3cd04290d5c08c5a11ea

--- a/build/make/configure.sh
+++ b/build/make/configure.sh
@@ -1179,7 +1179,7 @@
     check_cc <<EOF && INLINE="inline"
     static inline function() {}
 EOF
-    check_cc <<EOF && INLINE="__attribute__((always_inline))"
+    check_cc <<EOF && INLINE="__inline__ __attribute__((always_inline))"
     static __attribute__((always_inline)) function() {}
 EOF
 
--