diff options
author | Gilbert Ramirez <gram@alumni.rice.edu> | 1999-08-11 16:25:07 +0000 |
---|---|---|
committer | Gilbert Ramirez <gram@alumni.rice.edu> | 1999-08-11 16:25:07 +0000 |
commit | 8b3ee0f7614ff84ee1946135e7e0b965b0802e61 (patch) | |
tree | f65bbd2217d3114d3dd941fda1bfdcd56aa1bac5 /configure.in | |
parent | c0fa3841eeebc61b31421ac4fbf455ad7bcd2b05 (diff) | |
download | wireshark-8b3ee0f7614ff84ee1946135e7e0b965b0802e61.tar.gz wireshark-8b3ee0f7614ff84ee1946135e7e0b965b0802e61.tar.bz2 wireshark-8b3ee0f7614ff84ee1946135e7e0b965b0802e61.zip |
Modified the flex scanner to use symbols that start with "dfilter_"
instead of "yy". (dfilter-grammar.y was modified to #define yylex as
dfilter_lex).
VERSION is no longer needed since the doc/Makefile now uses @VERSION@,
passed to it from 'configure'.
svn path=/trunk/; revision=469
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/configure.in b/configure.in index 9e6e57e7bb..1094080a43 100644 --- a/configure.in +++ b/configure.in @@ -1,4 +1,4 @@ -# $Id: configure.in,v 1.36 1999/08/11 16:05:11 gram Exp $ +# $Id: configure.in,v 1.37 1999/08/11 16:25:07 gram Exp $ dnl Process this file with autoconf to produce a configure script. AC_INIT(etypes.h) @@ -14,8 +14,10 @@ AC_PROG_RANLIB AC_PROG_YACC AM_PROG_LEX AC_PATH_PROG(PERL_PATH, perl) +AC_PATH_PROG(LEX, flex) AC_SUBST(PERL_PATH) +AC_SUBST(FLEX_PATH) # If we're running gcc, add '-Wall' to CFLAGS. |