summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Rosin <peda@lysator.liu.se>2013-05-29 12:06:17 +0200
committerPeter Rosin <peda@lysator.liu.se>2013-05-29 12:06:17 +0200
commitd817a68e133f5bf41e1b5926d64ece7bc43ca8c3 (patch)
treea3c95cfd4e432f794e7ec89a4e5fd644d03159a8
parenta4598c57d3dded53851f1319f23d187b2c8132d3 (diff)
downloadautomake-d817a68e133f5bf41e1b5926d64ece7bc43ca8c3.tar.gz
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 <peda@lysator.liu.se>
-rw-r--r--t/yacc-bison-skeleton.sh1
1 files changed, 1 insertions, 0 deletions
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