shithub: libvpx

Download patch

ref: b4e390981c1573f90c2ee23378eeeaf610412ede
parent: cda5f9922205b8d4a749f0c78167eee3e528bfad
parent: 9ebc99fcac4fe02f8814271b4904fff075b02234
author: Johann <johann.koenig@duck.com>
date: Fri May 3 05:38:56 EDT 2013

Merge "Add __inline__ to INLINE definition."

--- a/build/make/configure.sh
+++ b/build/make/configure.sh
@@ -1185,7 +1185,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
 
--