aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dtd_preparse.l
AgeCommit message (Collapse)AuthorFilesLines
2008-08-05luis.ontanon@gmail.com => luis@ontanon.orgLuis Ontanon1-1/+1
svn path=/trunk/; revision=25937
2008-05-22Move the file utility functions from wiretap to libwsutil so thatJeff Morriss1-24/+24
libwireshark (and the plugins using those functions) do not depend on wiretap on Windows. While doing that, rename the eth_* functions to ws_*. svn path=/trunk/; revision=25354
2008-05-11g_string_sprintf --> g_string_printf and g_string_sprintfa --> ↵Bill Meier1-5/+5
g_string_append_printf svn path=/trunk/; revision=25276
2008-04-25 Bug 2493: Fix (Part 3 of 3): Bill Meier1-0/+6
To prevent Windows compiler errors when using flex 2.5.35. Ignore 'signed /unsigned mismatch' warnings svn path=/trunk/; revision=25174
2008-04-25 Bug 2493: Fix (Part 2): Bill Meier1-5/+18
To prevent Windows compiler errors when using flex 2.5.35. Fixes "missing unistd.h" and yywrap "mismatched parameter" warnings [Upcoming Part 3: ignore 'signed /unsigned mismatch' errors] svn path=/trunk/; revision=25173
2007-10-12s/fopen()/eth_fopen()/ in an attempt to fix bug 1827: eth_fopen() deals with ↵Jeff Morriss1-1/+2
wide chars for us on Windows while fopen() does not. svn path=/trunk/; revision=23168
2007-08-04Add a script as a front-end for Flex, to work around various problems,Guy Harris1-0/+1
such as the fact that Flex strips all but the last component of the "-o" argument, and that it doesn't generate a header file to declare routines the generated lexical analyzer defines. Use that script when building lexical analyzers, and, for each lexical analyzer, include the generated header file in the generated analyzer. svn path=/trunk/; revision=22446
2007-07-30Add comments to various %option items to explain what they're doing. Guy Harris1-2/+23
Move the %options to the beginning if they weren't already there, and put them in the same order in all files. Add "prefix=" options to .l files that don't already have them, so we don't have to pass a "-P" option. Add "never-interactive" and "noyywrap" options to our lexical analyzers, to remove extra isatty() checks and to eliminate the need for yywrap() from the Flex library. Get rid of %option nostdinit - that's the default. Add .l.c: rules to Makefile.am files, replacing the rules for specific .l files. Have those rules all check that $(LEX) is set. Update the address for the FSF. svn path=/trunk/; revision=22424
2007-02-19Get rid of an unused variable.Guy Harris1-2/+0
svn path=/trunk/; revision=20841
2007-01-09make internal variables staticLuis Ontanon1-9/+9
svn path=/trunk/; revision=20352
2006-05-29Ethereal->WiresharkAnders Broman1-2/+2
svn path=/trunk/; revision=18248
2006-05-21name changeRonnie Sahlberg1-2/+2
svn path=/trunk/; revision=18197
2006-03-11Close the files after reading!Luis Ontanon1-1/+3
svn path=/trunk/; revision=17591
2005-11-10from albert chanRonnie Sahlberg1-2/+2
dont use a variable with the name dirname since it will collide with symbols on some hosts svn path=/trunk/; revision=16460
2005-10-06remove file inclusion code altoghether and few other changesLuis Ontanon1-32/+11
svn path=/trunk/; revision=16145
2005-09-28be more flexible in what's a nameLuis Ontanon1-1/+1
svn path=/trunk/; revision=16047
2005-09-22Make the private variables for various lexical analyzers static, soGuy Harris1-2/+2
that we don't have all the lexical analyzers in libethereal share them (note that they're already static in radius_dict.l, so they weren't sharing with any other lexical analyzer), and so that OS X 10.3.9's run-time linker doesn't get upset at finding them defined in libethereal and the MATE plugin. Fix up indentation. svn path=/trunk/; revision=15961
2005-09-17Because there's more than just text in XML...Luis Ontanon1-75/+10
DTDs are imported to create fields svn path=/trunk/; revision=15851
2005-09-10propperly handle the errors when loading a file fails.Luis Ontanon1-7/+30
svn path=/trunk/; revision=15751
2005-09-10don't use fgets() as MSVC does not implement it. use fgetc instead.Luis Ontanon1-6/+7
svn path=/trunk/; revision=15750
2005-09-10the dtd parser (still missing the glue) and few fixes to packet-xml.cLuis Ontanon1-0/+258
svn path=/trunk/; revision=15745