aboutsummaryrefslogtreecommitdiffstats
path: root/make-reg-dotc.py
AgeCommit message (Collapse)AuthorFilesLines
2004-07-18Set the svn:eol-style property on all text files to "native", so thatGuy Harris1-1/+1
they have LF at the end of the line on UN*X and CR/LF on Windows; hopefully this means that if a CR/LF version is checked in on Windows, the CRs will be stripped so that they show up only when checked out on Windows, not on UN*X. svn path=/trunk/; revision=11400
2003-07-21Look for source files in the current directory first and then in srcdir.Uwe Girlich1-2/+5
This semantic is used in make-reg-dotc (the shell script) as well and it is needed, if the source directory and the build directory are different. svn path=/trunk/; revision=8057
2001-06-19Not all Python scripts generate dissectors; "make-reg-dotc.py" generatesGuy Harris1-3/+3
"register.c", and, as such, shouldn't stuff ", HFILL" into its output. svn path=/trunk/; revision=3573
2001-06-18From Joerg Mayer: explicitly fill in all members of aGuy Harris1-3/+3
"header_field_info" structure, including the ones that are later set by the routines to register fields. svn path=/trunk/; revision=3561
2001-01-11Add a python script which has the same functionality as the shellGilbert Ramirez1-0/+115
script 'make-reg-dotc'. It is used only in the Win32 build because the make-reg-dotc shell script is *so* sloooooooooow on Win32, due to the multiple processes (grep, grep, sed) launched multiple times for each source file. By putting all the text-mangling logic into a single Python script, only one process is launched, and the source files are read only once. It's *a lot* faster... seconds instead of minutes. svn path=/trunk/; revision=2873