Build: add Flex version check
[lttng-tools.git] / configure.ac
index 936cb1c7cf5482c5ed230ecfb1a92837e0d0755b..19ad34201af9e1358a572d3dd01837b8d924cd79 100644 (file)
@@ -367,6 +367,10 @@ if test ! -f "$srcdir/src/lib/lttng-ctl/filter/filter-lexer.c"; then
                AC_MSG_ERROR([[flex not found and is required when building from git.
                Please install flex]])
        fi
+       AC_PATH_PROG([FLEX],[flex])
+       AX_PROG_FLEX_VERSION([2.5.35], [],[
+               AC_MSG_ERROR([[Flex >= 2.5.35 is required when building from git]])
+       ])
 fi
 
 CFLAGS="-Wall $CFLAGS -g -fno-strict-aliasing"
This page took 0.022931 seconds and 4 git commands to generate.