* lib/texinfo.tex: New upstream version.
[automake.git] / m4 / lex.m4
blob831d4be4fd10368f2940c715aece707233e7117d
1 ## Replacement for AC_PROG_LEX.                       -*-  Autoconf -*-
2 ## by Alexandre Oliva <oliva@dcc.unicamp.br>
4 # Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003
5 # Free Software Foundation, Inc.
7 # This program is free software; you can redistribute it and/or modify
8 # it under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 2, or (at your option)
10 # any later version.
12 # This program is distributed in the hope that it will be useful,
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 # GNU General Public License for more details.
17 # You should have received a copy of the GNU General Public License
18 # along with this program; if not, write to the Free Software
19 # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
20 # 02111-1307, USA.
22 # serial 4
24 # AM_PROG_LEX
25 # -----------
26 # Autoconf leaves LEX=: if lex or flex can't be found.  Change that to a
27 # "missing" invocation, for better error output.
28 AC_DEFUN([AM_PROG_LEX],
29 [AC_PREREQ(2.50)dnl
30 AC_REQUIRE([AM_MISSING_HAS_RUN])dnl
31 AC_REQUIRE([AC_PROG_LEX])dnl
32 if test "$LEX" = :; then
33   LEX=${am_missing_run}flex
34 fi])