diff options
author | Gilbert Ramirez <gram@alumni.rice.edu> | 1999-08-14 06:24:27 +0000 |
---|---|---|
committer | Gilbert Ramirez <gram@alumni.rice.edu> | 1999-08-14 06:24:27 +0000 |
commit | 8030084e931cc92c8bd80c1da92a29de99ac1ed2 (patch) | |
tree | 02e3917dd8cc530208292e15b57b998f422e25ce /Makefile.am | |
parent | 6572382f9a72c7b232f18a1c4bc2368fa2eb27d2 (diff) | |
download | wireshark-8030084e931cc92c8bd80c1da92a29de99ac1ed2.tar.gz wireshark-8030084e931cc92c8bd80c1da92a29de99ac1ed2.tar.bz2 wireshark-8030084e931cc92c8bd80c1da92a29de99ac1ed2.zip |
Modified YACC grammar to use non-yy symbols, to avoid conflicts with
libpcap's that were compiled with symbols beginning with 'yy'.
svn path=/trunk/; revision=487
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am index 5884a32924..c5472f2dcc 100644 --- a/Makefile.am +++ b/Makefile.am @@ -4,7 +4,8 @@ man_MANS = ethereal.1 sysconf_DATA = manuf -YFLAGS=-d +# Any POSIX-compatible YACC should honor the -p flag +YFLAGS=-d -p dfilter_ ethereal_SOURCES = \ alignment.h \ |