tests: avoid a spurious failure with MSVC
authorPeter Rosin <peda@lysator.liu.se>
Wed, 29 May 2013 10:06:17 +0000 (12:06 +0200)
committerPeter Rosin <peda@lysator.liu.se>
Wed, 29 May 2013 10:06:17 +0000 (12:06 +0200)
Fixes automake bug#14498.

* t/yacc-bison-skeleton.sh: inline was not standardized prior to C99.

Signed-off-by: Peter Rosin <peda@lysator.liu.se>
t/yacc-bison-skeleton.sh

index b89d44c..4553f7e 100644 (file)
@@ -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