1 | ## Replacement for AC_PROG_LEX. -*- Autoconf -*-
|
---|
2 | ## by Alexandre Oliva <oliva@dcc.unicamp.br>
|
---|
3 |
|
---|
4 | # Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003
|
---|
5 | # Free Software Foundation, Inc.
|
---|
6 |
|
---|
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.
|
---|
11 |
|
---|
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.
|
---|
16 |
|
---|
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.
|
---|
21 |
|
---|
22 | # serial 4
|
---|
23 |
|
---|
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])
|
---|