From: Peter Rosin Date: Wed, 29 May 2013 10:06:17 +0000 (+0200) Subject: tests: avoid a spurious failure with MSVC X-Git-Tag: v1.13.2b~8 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=d817a68e133f5bf41e1b5926d64ece7bc43ca8c3;p=platform%2Fupstream%2Fautomake.git tests: avoid a spurious failure with MSVC Fixes automake bug#14498. * t/yacc-bison-skeleton.sh: inline was not standardized prior to C99. Signed-off-by: Peter Rosin --- diff --git a/t/yacc-bison-skeleton.sh b/t/yacc-bison-skeleton.sh index b89d44c13..4553f7e50 100644 --- a/t/yacc-bison-skeleton.sh +++ b/t/yacc-bison-skeleton.sh @@ -22,6 +22,7 @@ required='cc bison' cat >> configure.ac << 'END' AC_PROG_CC +AC_C_INLINE dnl Required by some pre-C99 compilers such as MSVC. AC_PROG_YACC AC_OUTPUT END