aboutsummaryrefslogtreecommitdiffstats
path: root/tools
AgeCommit message (Collapse)AuthorFilesLines
2001-11-13Hopefully the last time I have to change my e-mail address.Gilbert Ramirez1-2/+2
svn path=/trunk/; revision=4199
2001-11-09Remove "text2pcap-scanner.obj" and "tools\lemon\lemon.obj" when a "nmakeGuy Harris1-1/+1
clean" is done. svn path=/trunk/; revision=4188
2001-10-04From Motonori Shindo: have CVS ignore some files generated by Win32Guy Harris1-0/+2
builds. svn path=/trunk/; revision=3995
2001-07-22Do __attribute__ stuff if the GCC version number is greater than orGuy Harris1-2/+2
equal to 2, not just if it's equal to 2 - GCC 3.0 makes it 3, not 2.... svn path=/trunk/; revision=3765
2001-06-26If length arguments to "%*s" aren't of type "int", cast them to "int",Guy Harris1-4/+4
as that's what C requires them to be. svn path=/trunk/; revision=3610
2001-04-23Signed vs. unsigned fixes from Joerg Mayer.Guy Harris1-6/+6
svn path=/trunk/; revision=3372
2001-04-18nmake was compiling lemon.c twice; now let it use its defaultGilbert Ramirez1-5/+1
rules, keeping it from over-compiling. svn path=/trunk/; revision=3325
2001-04-18Revert. MSVC is wrong. Thanks to Guy for pointing that out.Gilbert Ramirez1-3/+13
svn path=/trunk/; revision=3323
2001-04-18Makefile.nmake pulls in settings from config.nmakeGilbert Ramirez2-3/+10
Move 'const' keyword to keep const qualifiers balanced... gets rid of complaint from MSVC. svn path=/trunk/; revision=3321
2001-03-09Fixes to Lemon to get it to compile on platforms (such as some versionsGuy Harris1-11/+11
of Tru64 UNIX) that define TRUE and FALSE. Fixes to some Tru64 compiler warnings. svn path=/trunk/; revision=3120
2001-03-06Add some win32-specific targets in .cvsignore's.Gilbert Ramirez1-2/+2
Replace 'nmake' with $(MAKE) /$(MAKEFLAGS), from Mike Frisch. svn path=/trunk/; revision=3108
2001-02-27Move the location of cppmagic.h, since the lemon-flex include filesGilbert Ramirez2-1/+16
require it. It makes more sense to either put cppmagic with lemon, or in yet another common directory. I'll just put it with lemon. svn path=/trunk/; revision=3083
2001-02-23Add a little script which takes the output of "cvs diff", which isGilbert Ramirez2-1/+114
a flattened recursive diff, and unflattens it, so that it can be applied with "patch -p0". This has tested only against the output of "cvs diff -u". Usage: cvs diff -u | cvsdiff-fix.py > file.diff svn path=/trunk/; revision=3071
2001-02-15Don't cast the function argument to "qsort()" to the expected type, makeGuy Harris1-13/+16
the function have the expected type. Make the arguments to comparison functions used by the merge sort be "const void *", not "void *", just as the arguments to the comparison functions used by "qsort()" are "const void *". svn path=/trunk/; revision=3040
2001-02-15More prototype fun - make the Lemon parser allocate and free routinesGuy Harris1-5/+5
take fully-prototyped function arguments with types appropriate to "g_malloc()" and "g_free()", and change the calls to the functions pointed to by those arguments not pass the extra __FILE__ and __LINE__ arguments. svn path=/trunk/; revision=3039
2001-02-15More paranoia - when compiling with GCC 2.x, do checks of the formatGuy Harris1-3/+8
string argument and subsequent arguments to "ErrorMsg()". Fix up the bugs the checks in question found. svn path=/trunk/; revision=3038
2001-02-15Change "lemon" *NOT* to cast pointers to "int", as that doesn't work onGuy Harris1-363/+232
LP64 platforms. Change "lemon" to use function prototypes and the official ANSI C style of variable-argument-list functions, and to include various system header files rather than to use non-prototype declaration of various system functions, to do a lot more type checking. svn path=/trunk/; revision=3037
2001-02-04Add a "-f" flag to the "rm", so that "make clean" won't get an errorGuy Harris1-1/+1
(and cause a higher-level "make clean" to stop) if any of the files to be removed aren't there. svn path=/trunk/; revision=2991
2001-02-02Add Makefile.nmake files for new subdirs.Gilbert Ramirez4-2/+27
Add them to EXTRA_DIST in corresponding Makefile.am's so that they get packaged with the distribution. svn path=/trunk/; revision=2979
2001-02-01Rename the "optarg()" and "opterr()" functions to "get_optarg()" andGuy Harris1-31/+42
"get_opterr()" so they don't collide with "getopt()"s "optarg" and "opterr" globals (Solaris 2.6's <stdio.h> declares both "optarg" and "opterr", causing "lemon.c" not to compile). Define "safe_isXXX()" macros to call "isXXX()" after casting the argument to "unsigned char" to handle characters with the 8th bit set. Make some "int" variables used only to hold characters "char" instead. svn path=/trunk/; revision=2970
2001-02-01Create a more modular type system for the FT_* types. Put themGilbert Ramirez10-0/+5739
into epan/ftypes. Re-write display filter routines using Lemon parser instead of yacc. Besides using a different tool, the new grammar is much simpler, while the display filter engine itself is more powerful and more easily extended. Add dftest executable, to test display filter "bytecode" generation. Add option to "configure" to build dftest or randpkt, both of which are not built by default. Implement Ed Warnicke's ideas about dranges in the new display filter and ftype code. Remove type FT_TEXT_ONLY in favor of FT_NONE, and have protocols registered as FT_PROTOCOL. Thus, FT_NONE is used only for simple labels in the proto tree, while FT_PROTOCOL is used for protocols. This was necessary for being able to make byte slices (ranges) out of protocols, like "frame[0:3]" Win32 Makefile.nmake's will be added tonight. svn path=/trunk/; revision=2967