From: Hans-Bernhard B. <br...@us...> - 2001-06-01 12:44:40
|
Update of /cvsroot/cscope/cscope In directory usw-pr-cvs1:/tmp/cvs-serv21676 Modified Files: acconfig.h config.h.in configure.in Log Message: New version of flex scanner, plus supporting changes Index: acconfig.h =================================================================== RCS file: /cvsroot/cscope/cscope/acconfig.h,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -r1.5 -r1.6 *** acconfig.h 2001/02/09 19:59:59 1.5 --- acconfig.h 2001/06/01 12:44:36 1.6 *************** *** 37,39 **** --- 37,43 ---- #undef NCURSES_970530 + /* Define this if the lex used is the 'real' AT&T variety. Don't define if + * it's flex or some other */ + #undef USING_LEX + Index: config.h.in =================================================================== RCS file: /cvsroot/cscope/cscope/config.h.in,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -r1.5 -r1.6 *** config.h.in 2000/11/23 13:53:40 1.5 --- config.h.in 2001/06/01 12:44:36 1.6 *************** *** 54,57 **** --- 54,61 ---- #undef NCURSES_970530 + /* Define this if the lex used is the 'real' AT&T variety. Don't define if + * it's flex or some other */ + #undef USING_LEX + /* Define if you have the getcwd function. */ #undef HAVE_GETCWD Index: configure.in =================================================================== RCS file: /cvsroot/cscope/cscope/configure.in,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -r1.13 -r1.14 *** configure.in 2001/03/29 15:01:56 1.13 --- configure.in 2001/06/01 12:44:36 1.14 *************** *** 132,135 **** --- 132,136 ---- else LEXER_SOURCE="scanner" + AC_DEFINE(USING_LEX) fi AC_SUBST(LEXER_SOURCE) |