<div dir="ltr">Merged in master and stable-1.2 with typo fix (Buid -> Build).<div><br></div><div>Thanks,</div><div>Jérémie</div></div><div class="gmail_extra"><br><div class="gmail_quote">On Thu, Jul 2, 2015 at 6:20 PM, Jonathan Rajotte <span dir="ltr"><<a href="mailto:jonathan.rajotte-julien@efficios.com" target="_blank">jonathan.rajotte-julien@efficios.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">This new m4 macro is valid starting from [1].<br>
<br>
[1]<a href="http://sourceforge.net/p/flex/flex/ci/712c03b38fb35f9d7f16e0fdd27441c3efda0071/tree/" rel="noreferrer" target="_blank">http://sourceforge.net/p/flex/flex/ci/712c03b38fb35f9d7f16e0fdd27441c3efda0071/tree/</a><br>
<br>
Signed-off-by: Jonathan Rajotte <<a href="mailto:jonathan.rajotte-julien@efficios.com">jonathan.rajotte-julien@efficios.com</a>><br>
---<br>
 <a href="http://configure.ac" rel="noreferrer" target="_blank">configure.ac</a>               |  4 +++<br>
 m4/ax_prog_flex_version.m4 | 64 ++++++++++++++++++++++++++++++++++++++++++++++<br>
 2 files changed, 68 insertions(+)<br>
 create mode 100644 m4/ax_prog_flex_version.m4<br>
<br>
diff --git a/<a href="http://configure.ac" rel="noreferrer" target="_blank">configure.ac</a> b/<a href="http://configure.ac" rel="noreferrer" target="_blank">configure.ac</a><br>
index 3421cbd..ef2db73 100644<br>
--- a/<a href="http://configure.ac" rel="noreferrer" target="_blank">configure.ac</a><br>
+++ b/<a href="http://configure.ac" rel="noreferrer" target="_blank">configure.ac</a><br>
@@ -46,6 +46,10 @@ if test ! -f "$srcdir/formats/ctf/metadata/ctf-lexer.c"; then<br>
                 AC_MSG_ERROR([[flex not found and is required when building from git.<br>
                 Please install flex]])<br>
         fi<br>
+        AC_PATH_PROG([FLEX],[flex])<br>
+        AX_PROG_FLEX_VERSION([2.5.35], [],[<br>
+                AC_MSG_ERROR([[Flex >= 2.5.35 is required when building from git]])<br>
+        ])<br>
 fi<br>
<br>
<br>
diff --git a/m4/ax_prog_flex_version.m4 b/m4/ax_prog_flex_version.m4<br>
new file mode 100644<br>
index 0000000..f1ad9ef<br>
--- /dev/null<br>
+++ b/m4/ax_prog_flex_version.m4<br>
@@ -0,0 +1,64 @@<br>
+# SYNOPSIS<br>
+#<br>
+#   AX_PROG_FLEX_VERSION([VERSION],[ACTION-IF-TRUE],[ACTION-IF-FALSE])<br>
+#<br>
+# DESCRIPTION<br>
+#<br>
+#   Makes sure that flex version is greater or equal to the version indicated.<br>
+#   If true the shell commands in ACTION-IF-TRUE are executed. If not the shell<br>
+#   commands in commands in ACTION-IF-TRUE are executed. If not the shell<br>
+#   commands in ACTION-IF-FALSE are run. Note if $FLEX is not set (for example<br>
+#   by running AC_CHECK_PROG or AC_PATH_PROG) the macro will fail.<br>
+#<br>
+#   Example:<br>
+#<br>
+#     AC_PATH_PROG([FLEX],[flex])<br>
+#     AX_PROG_FLEX_VERSION([2.5.39],[ ... ],[ ... ])<br>
+#<br>
+#   This will check to make sure that the flex you have is at least<br>
+#   version 2.5.39 or greater.<br>
+#<br>
+#   NOTE: This macro uses the $FLEX variable to perform the check.<br>
+#<br>
+# LICENSE<br>
+#<br>
+#   Copyright (c) 2015 Jonathan Rajotte-Julien <<a href="mailto:jonathan.rajotte-julien@efficios.com">jonathan.rajotte-julien@efficios.com</a>><br>
+#<br>
+#   Copying and distribution of this file, with or without modification, are<br>
+#   permitted in any medium without royalty provided the copyright notice<br>
+#   and this notice are preserved. This file is offered as-is, without any<br>
+#   warranty.<br>
+<br>
+#serial 1<br>
+<br>
+AC_DEFUN([AX_PROG_FLEX_VERSION],[<br>
+    AC_REQUIRE([AC_PROG_SED])<br>
+    AC_REQUIRE([AC_PROG_GREP])<br>
+<br>
+    AS_IF([test -n "$FLEX"],[<br>
+        ax_flex_version="$1"<br>
+<br>
+        AC_MSG_CHECKING([for flex version])<br>
+        changequote(<<,>>)<br>
+        flex_version=`$FLEX --version 2>&1 \<br>
+          | $SED -n -e '/flex /b inspect<br>
+b<br>
+: inspect<br>
+s/.* (\{0,1\}\([0-9]*\.[0-9]*\.[0-9]*\))\{0,1\}.*/\1/;p'`<br>
+        changequote([,])<br>
+        AC_MSG_RESULT($flex_version)<br>
+<br>
+       AC_SUBST([FLEX_VERSION],[$flex_version])<br>
+<br>
+        AX_COMPARE_VERSION([$flex_version],[ge],[$ax_flex_version],[<br>
+           :<br>
+            $2<br>
+        ],[<br>
+           :<br>
+            $3<br>
+        ])<br>
+    ],[<br>
+        AC_MSG_WARN([could not find flex])<br>
+        $3<br>
+    ])<br>
+])<br>
<span class="HOEnZb"><font color="#888888">--<br>
2.1.4<br>
<br>
</font></span></blockquote></div><br><br clear="all"><div><br></div>-- <br><div class="gmail_signature">Jérémie Galarneau<br>EfficiOS Inc.<br><a href="http://www.efficios.com" target="_blank">http://www.efficios.com</a></div>
</div>