|
From: Hans-Bernhard B. <br...@us...> - 2001-03-29 15:02:21
|
Update of /cvsroot/cscope/cscope
In directory usw-pr-cvs1:/tmp/cvs-serv15882
Modified Files:
configure.in
Log Message:
Version of scanner.l tailored to flex added, autoconfed its usage
Index: configure.in
===================================================================
RCS file: /cvsroot/cscope/cscope/configure.in,v
retrieving revision 1.12
retrieving revision 1.13
diff -C2 -r1.12 -r1.13
*** configure.in 2001/02/09 19:59:59 1.12
--- configure.in 2001/03/29 15:01:56 1.13
***************
*** 127,130 ****
--- 127,137 ----
ACNU_PROG_LEX
ACNU_DECL_YYTEXT
+ dnl set up variable used to choose between the two lexer sources...
+ if test "x$LEX" = "xflex"; then
+ LEXER_SOURCE="fscanner"
+ else
+ LEXER_SOURCE="scanner"
+ fi
+ AC_SUBST(LEXER_SOURCE)
])
dnl === END aclocal REPLACEMENT MACROS
***************
*** 145,152 ****
fi
AC_PROG_YACC
-
- if test "x$LEX" = "xflex"; then
- LEX="$LEX -l"
- fi
dnl === BEGIN CURSES CHECK
--- 152,155 ----
|