Evas: check static inline functions, not just inline ones

SVN revision: 68448
This commit is contained in:
Vincent Torri 2012-02-26 07:09:07 +00:00
parent cf21239cf8
commit 99c074f23f
1 changed files with 2 additions and 2 deletions

View File

@ -67,7 +67,7 @@ AC_COMPILE_IFELSE(
[AC_LANG_PROGRAM(
[[
#include <windows.h>
__forceinline void foo(void) {}
static __forceinline void foo(void) {}
]],
[[
]])],
@ -84,7 +84,7 @@ if test "x${have_attribute_always_inline}" = "xno" ; then
AC_COMPILE_IFELSE(
[AC_LANG_PROGRAM(
[[
__attribute__((__always_inline__)) inline void foo(void) {}
static __attribute__((__always_inline__)) inline void foo(void) {}
]],
[[
]])],