aboutsummaryrefslogtreecommitdiffstats
path: root/version_info.c
AgeCommit message (Collapse)AuthorFilesLines
2006-05-28Ethereal->WiresharkAnders Broman1-1/+1
svn path=/trunk/; revision=18235
2006-05-22ethereal->wireshark updatesRonnie Sahlberg1-2/+2
svn path=/trunk/; revision=18206
2006-05-21name changeRonnie Sahlberg1-3/+3
svn path=/trunk/; revision=18197
2006-03-01Add Lua support by default for Win32. Fix some compilation problems.Gerald Combs1-0/+13
Add Lua information to the version paragraph. svn path=/trunk/; revision=17440
2006-02-17remove dependencies to pcap.h, so getting an idea what needs to be done by ↵Ulf Lamping1-4/+5
dumpcap in addition to the things already done now various dumpcap related code cleanup: mainly #include's and capture engine related stuff svn path=/trunk/; revision=17327
2006-02-17we don't need pcap.h here (any longer)Ulf Lamping1-10/+0
svn path=/trunk/; revision=17324
2006-01-12we have 2006 in the meantime ...Ulf Lamping1-1/+1
I've also added "and contributors" to the copyright string svn path=/trunk/; revision=17018
2005-12-21Provide not only copyright information, but a GPL blurb, in all theGuy Harris1-1/+29
version/usage messages. Put newlines at the end of various version strings. svn path=/trunk/; revision=16870
2005-12-06rename pcap-....c/.h files to capture-pcap-....c/.hUlf Lamping1-1/+1
this way, the capture prefix will "logically" group the files together and file browsers will also group them we may want to move the files into a subdir capture later svn path=/trunk/; revision=16691
2005-10-04Grr. Without the right version of the SDK, we can't even compile codeGuy Harris1-12/+8
to *use* the shiny new features. svn path=/trunk/; revision=16102
2005-10-04Cope with NT 6.0, and with the x86-64 version of XP being NT 5.2 ratherGuy Harris1-1/+26
than NT 5.1. svn path=/trunk/; revision=16100
2005-08-16Move SVNVERSION handling into version_info. That way, we won't haveJörg Mayer1-0/+9
to recompile tethereal.o etc each time the svn version has changed, relinking is sufficient. I'm not sure what to do about mergecap, as it currently doesn't link against version_info, so it's "overhead" either way. svn path=/trunk/; revision=15371
2004-12-29Make the tone of the error messages a bit less formal, by usingGuy Harris1-1/+1
contractions. (Safari does, at least when you're trying to open a file to which you don't have read access.) svn path=/trunk/; revision=12852
2004-09-11Use _WIN32 rather than WIN32 to determine if we're compiling on Win32;Guy Harris1-2/+2
according to Gisle Vanem, WIN32 isn't a built-in in MSVC, but _WIN32 is. svn path=/trunk/; revision=11972
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
2004-05-22Don't put a newline at the end of the compiled-with version informationGuy Harris1-2/+2
- we don't put it at the end of the run-time version information. Add newlines into formats used with that information where appropriate (the "About" dialog box already had a newline in the format). svn path=/trunk/; revision=10950
2004-02-24Put a period at the end of the "Running with" stuff.Guy Harris1-1/+2
svn path=/trunk/; revision=10212
2004-02-03As Apple's advertising industry might have said, "word-wrap different".Guy Harris1-3/+3
svn path=/trunk/; revision=9975
2004-01-11Rename DISSECTOR_HELPER_{SRC,OBJECTS} toGuy Harris1-0/+345
DISSECTOR_SUPPORT_{SRC,OBJECTS}. Add some additional files, required by dissectors, to those lists. Extract the stuff to get version information strings for libraries and the OS, which is *not* needed by dissectors, from "util.c", which contains routines that *are* needed by dissectors, and put it into a separate file. Make "dftest" link only with the dissector support stuff, not with all of the Ethereal common files. svn path=/trunk/; revision=9645