From: Hans-Bernhard B. <br...@us...> - 2001-06-26 14:05:55
|
Update of /cvsroot/cscope/cscope In directory usw-pr-cvs1:/tmp/cvs-serv13645 Modified Files: ChangeLog configure.in Log Message: Fixed some gotchas related to the "make dist" automake target Index: ChangeLog =================================================================== RCS file: /cvsroot/cscope/cscope/ChangeLog,v retrieving revision 1.77 retrieving revision 1.78 diff -C2 -r1.77 -r1.78 *** ChangeLog 2001/06/25 12:13:18 1.77 --- ChangeLog 2001/06/26 14:05:52 1.78 *************** *** 1,2 **** --- 1,11 ---- + (2001/06/26 - broeker) Changed lex/flex handling in automake/autoconf setup + to make 'make distcheck' work cleanly: added new + files scanner.h and lookup.h to list of sources. + Made sure both scanner.l and fscanner.l end up in the + distribution tarball, as they should. Removed some + quotes from definition of ACNU_DECL_YYTEXT in + configure.in which confused autoheader. + (2001/06/25 - broeker) Change handling of tag-less enums to same method as + used in fscanner.l since 2001/06/19. (2001/06/25 - broeker) Fix SF bug #435535: two uses of yytext[] had been left over in fscanner.l, causing incorrect compression of Index: configure.in =================================================================== RCS file: /cvsroot/cscope/cscope/configure.in,v retrieving revision 1.14 retrieving revision 1.15 diff -C2 -r1.14 -r1.15 *** configure.in 2001/06/01 12:44:36 1.14 --- configure.in 2001/06/26 14:05:52 1.15 *************** *** 112,117 **** if test $ac_cv_prog_lex_yytext_pointer = yes; then AC_DEFINE(YYTEXT_POINTER, 1, ! [Define if `lex' declares `yytext' as a `char *' by default, ! not a `char[]'.]) fi ])# AC_DECL_YYTEXT1 --- 112,117 ---- if test $ac_cv_prog_lex_yytext_pointer = yes; then AC_DEFINE(YYTEXT_POINTER, 1, ! [Define if lex declares yytext as a char * by default, ! not a char[].]) fi ])# AC_DECL_YYTEXT1 *************** *** 128,139 **** 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" AC_DEFINE(USING_LEX) fi - AC_SUBST(LEXER_SOURCE) ]) dnl === END aclocal REPLACEMENT MACROS --- 128,136 ---- ACNU_DECL_YYTEXT dnl set up variable used to choose between the two lexer sources... ! if test "x$LEX" = "xlex" ; then AC_DEFINE(USING_LEX) fi ]) + AM_CONDITIONAL(USING_LEX, text "x$LEX" = "xflex") dnl === END aclocal REPLACEMENT MACROS |