Have fun; tinderbox recode-3.6 # less m4/flex.m4 ## Replacement for AC_PROG_LEX and AC_DECL_YYTEXT ## by Alexandre Oliva <oliva@dcc.unicamp.br> ## Modified by Akim Demaille so that only flex is legal # serial 2 dnl ad_AC_PROG_FLEX dnl Look for flex or missing, then run AC_PROG_LEX and AC_DECL_YYTEXT AC_DEFUN(ad_AC_PROG_FLEX, [AC_CHECK_PROGS(LEX, flex, missing) if test "$LEX" = missing; then LEX="\$(top_srcdir)/$ac_aux_dir/missing flex" LEX_OUTPUT_ROOT=lex.yy AC_SUBST(LEX_OUTPUT_ROOT)dnl else AC_PROG_LEX AC_DECL_YYTEXT fi]) AC_PROG_LEX and AC_DECL_YYTEXT are two once-only expanded macros, so at that point you get "else fi" and the build log happens.
Created attachment 202487 [details] Build log
http://blog.flameeyes.eu/2009/08/28/autoconf-2-64-the-phantom-macro-menace But there is more, I'll attach a patch.
(In reply to comment #2) > But there is more, I'll attach a patch. Just apply it, please.
ive fixed it in 3.6_p16