]> git.saurik.com Git - bison.git/blobdiff - m4/flex.m4
build: flex.m4: check for Flex.
[bison.git] / m4 / flex.m4
index 7e1b914e0f0dad32a311adbde10e43c5324ac1db..2073a0dc0b1be77238a20ed39ec483e1241af835 100644 (file)
@@ -20,10 +20,29 @@ fi])
 
 # _AC_PROG_LEX_YYTEXT_DECL
 # ------------------------
-# Check for the Lex output root, the Lex library, and whether Lex
-# declares yytext as a char * by default.
+# Check whether this is Flex, for the Lex output root, the Lex library,
+# and whether Lex declares yytext as a char * by default.
 m4_define([_AC_PROG_LEX_YYTEXT_DECL],
+[AC_CACHE_CHECK([whether lex is flex],
+                [ac_cv_prog_flex],
 [cat >conftest.l <<_ACEOF[
+%option debug nodefault noinput nounput noyywrap never-interactive
+%x SC_CONF_TEST
+%%
+a { BEGIN SC_CONF_TEST; }
+]_ACEOF
+if _AC_DO_VAR([LEX conftest.l]); then
+  ac_cv_prog_flex=yes
+else
+  ac_cv_prog_flex=no
+fi
+])
+FLEX=
+if test $ac_cv_prog_flex = yes; then
+  AC_SUBST([FLEX], [yes])dnl
+fi
+
+cat >conftest.l <<_ACEOF[
 %%
 a { ECHO; }
 b { REJECT; }