On Thu, 15 Oct 2015 22:50:44 +0100, Stuart Henderson wrote:

> It does not build as-is, there's an issue with "c_get_text" (a renamed
> yyget_text) with our version of flex. I have two possible workarounds
> so far but neither is particularly nice;

Third option, add c_get_text to configlexer.lex as follows:

char *c_get_text(void)
{
        return yytext;
}

I did this just before the definition of yy_set_bol but it can go
just about anywhere in the first %{ ... %} block

 - todd

Reply via email to