Edit

kc3-lang/automake/m4/lex.m4

Branch :

  • Show log

    Commit

  • Author : Akim Demaille
    Date : 2000-08-02 08:59:16
    Hash : 4b893ece
    Message : * m4: Quote properly the name of the macros being defined. Use `#' instead of `dnl' where appropriate. * m4/header.m4 (AM_CONFIG_HEADER): Get rid of changequote, just quote. Don't quote passive characters. Pull the AC_PREREQ outside the macro. * m4/init.m4: Pull the AC_PREREQ outside the macro.

  • m4/lex.m4
  • ## Replacement for AC_PROG_LEX and AC_DECL_YYTEXT
    ## by Alexandre Oliva <oliva@dcc.unicamp.br>
    
    # AM_PROG_LEX
    # Look for flex, lex or missing, then run AC_PROG_LEX and AC_DECL_YYTEXT
    AC_DEFUN([AM_PROG_LEX],
    [AC_REQUIRE([AM_MISSING_HAS_RUN])
    AC_CHECK_PROGS(LEX, flex lex, [${am_missing_run}flex])
    AC_PROG_LEX
    AC_DECL_YYTEXT])