Skip to content
Snippets Groups Projects
Commit cfb6db36 authored by Marek Vavrusa's avatar Marek Vavrusa
Browse files

Merge branch 'development' into testing

parents 2c55c28c 5a574cc6
No related branches found
No related tags found
No related merge requests found
......@@ -18,11 +18,15 @@ LT_INIT
# Checks for programs.
AC_PROG_CC
AM_PROG_LEX
LEX_FLEX=`$LEX -version | awk '{print $1}'`
LEX_FLEX=`$LEX -version | awk '{print $1;exit}'`
if test "$LEX_FLEX" != "flex"; then
AC_MSG_ERROR([GNU flex needed for reentrant parsers])
AC_MSG_ERROR([GNU flex needed for reentrant parsers, set the \$LEX variable before running configure])
fi
AC_PROG_YACC
YACC_BISON=`bison --version | awk '{print $1;exit}'`
if test "$YACC_BISON" != "bison"; then
AC_MSG_ERROR([GNU bison needed for reentrant parsers, set the \$YACC variable before running configure])
fi
AC_PROG_INSTALL
# Set compiler compatibility flags
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment