diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2014-10-24 19:49:08 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2014-10-24 19:49:08 -0700 |
commit | 76aca0cdeb648421ebbbfc3c7e14c2d0d1878348 (patch) | |
tree | 8201351ec73e013a88381dd4ae99cb247c19a9ee /parser.l | |
parent | 57276037c1357e54730a94fb1191362d4f694252 (diff) | |
download | txr-76aca0cdeb648421ebbbfc3c7e14c2d0d1878348.tar.gz txr-76aca0cdeb648421ebbbfc3c7e14c2d0d1878348.tar.bz2 txr-76aca0cdeb648421ebbbfc3c7e14c2d0d1878348.zip |
GNU Flex's libfl library provides nothing. Let us not refer to it. It
only causes build issues on some systems where it is not provided
in the standard location, or is not cross-compiled properly.
* Makefile (LEXLIB): Reference to variable removed.
* configure (lexlib): Variable removed.
(LEXLIB): config.make variable not generated.
* parser.l (yywrap): Provide this trivial function as inline.
Diffstat (limited to 'parser.l')
-rw-r--r-- | parser.l | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -79,6 +79,15 @@ int yylex_destroy(void) int yyget_column(yyscan_t); void yyset_column (int column_no, yyscan_t yyscanner); +/* The following function is all that libflex provides. + By providing it here, we eliminate the need to link libflex. */ +#define YY_SKIP_YYWRAP +INLINE int yywrap(yyscan_t scanner) +{ + (void) scanner; + return 1; +} + void yyerror(scanner_t *scanner, parser_t *parser, const char *s) { yyerrorf(scanner, lit("~a"), string_utf8(s), nao); |