aboutsummaryrefslogtreecommitdiffstats
path: root/version_info.c
AgeCommit message (Collapse)AuthorFilesLines
2007-08-26libsmi was missing from the CFLAGSLuis Ontanon1-1/+1
svn path=/trunk/; revision=22676
2007-08-26Fix a typoAnders Broman1-1/+1
svn path=/trunk/; revision=22675
2007-08-26Minor tweeks.Anders Broman1-6/+10
svn path=/trunk/; revision=22674
2007-02-06From Eric Hall to fix bug 1289:Jeff Morriss1-2/+2
http://bugs.wireshark.org/bugzilla/show_bug.cgi?id=1289 Rename 'svnversion' to 'wireshark_svnversion' to resolve a symbol conflict with GTK 2.10.6 (hmm, shouldn't GTK not be exporting that symbol or at least naming it so as to prevent such collisions? Well, so should we, so...) From Andreas Fink: change #ifdef for size_t in airdcap_interop.h to fix compile on MacOS X. svn path=/trunk/; revision=20726
2007-01-26A few more ethereal --> wiresharkBill Meier1-1/+1
svn path=/trunk/; revision=20559
2007-01-18Fix version_info.c compilationLuis Ontanon1-1/+1
svn path=/trunk/; revision=20478
2007-01-18the version string stated "without Lua" regardless or not Lua support was ↵Luis Ontanon1-2/+2
indeed built. svn path=/trunk/; revision=20468
2007-01-04Bump dateJaap Keuter1-1/+1
svn path=/trunk/; revision=20307
2006-12-22Take out UCD-SNMP message since we no longer use itJeff Morriss1-1/+1
svn path=/trunk/; revision=20199
2006-12-09Fix the display of whether the program was built with Net-SNMP, now thatGuy Harris1-20/+1
we no longer support UCD SNMP and no longer define HAVE_SOME_SNMP. svn path=/trunk/; revision=20084
2006-10-20MS usually calls this a build number, not a patch (e.g. see the system ↵Ulf Lamping1-2/+2
version info) svn path=/trunk/; revision=19643
2006-10-20Do the word-wrapping in end_string(), once the string is completelyGuy Harris1-70/+38
constructed. Clean up the insertion of ", ". Put the runtime libpcap version into the runtime version info. svn path=/trunk/; revision=19625
2006-10-20Make dumpcap complile again and other minor improvements.Jaap Keuter1-0/+1
svn path=/trunk/; revision=19624
2006-10-19Remove an extra space.Gerald Combs1-2/+0
svn path=/trunk/; revision=19621
2006-10-19Rename get_epan_and_portaudio_version_info() to get_gui_compiled_info()Gerald Combs1-4/+11
and add version info for AirPcap. Add a corresponding get_gui_runtime_info(). Fix up whitespace. svn path=/trunk/; revision=19620
2006-10-19Clean up the word wrap stuff a bit. (Arguably, that should be done inGuy Harris1-58/+58
the code that displays it - we might, for example, be able to have the About dialog word-wrap to the appropriate size, and word-wrap text printed to the standard output to the terminal width if it's going to a terminal and to 80 or whatever columns otherwise.) Don't report anything in dumpcap about libraries not used by dumpcap. (It was printing a blank, which looked a bit weird.) Fix the handling of _MSC_VER as per Gerald's fix for _MSC_FULL_VER. svn path=/trunk/; revision=19618
2006-10-19Fix the MSVC++ compiler information. Put a blank line before the "Built"Gerald Combs1-17/+17
info. svn path=/trunk/; revision=19616
2006-10-19Fix a comment.Guy Harris1-1/+1
svn path=/trunk/; revision=19614
2006-10-19Fix up the changes to put the Portaudio information at the end of theGuy Harris1-12/+80
version string, so the information comes out right for applications that don't use Portaudio. Get rid of an extra "with" in the version string for dumpcap. Get rid of an extra blank after the libpcap version string, and get rid of an extra newline before it. Attempt to add more compiler version information and to prettify the MSVC++ version information (both untested). svn path=/trunk/; revision=19613
2006-10-17Add compiler information.Gerald Combs1-0/+11
svn path=/trunk/; revision=19584
2006-10-10Don't let PortAudio skip the queue on the about dialog ;)Jaap Keuter1-4/+4
svn path=/trunk/; revision=19478
2006-09-22Slightly reshape the version text: Bring the OS info above the WinPcap text ↵Ulf Lamping1-3/+7
- this just makes more sense IMHO svn path=/trunk/; revision=19294
2006-09-22Add support for reading from stdin under Windows. Based on a patch sentGerald Combs1-1/+1
in last year by Gianluca Varenni. Add partial support for reading from named pipes (currently disabled). Move utf_8to16() and utf_16to8() to a separate module (unicode-utils.[ch]) so that we don't have to cut and paste code in dumpcap.c. Fix up whitespace. svn path=/trunk/; revision=19291
2006-09-12Move the PortAudio stuff to from version_info.c to gtk/main.c, so it canGuy Harris1-29/+0
use Pa_GetVersionText(). (The word-wrapping stuff appears to work.) svn path=/trunk/; revision=19222
2006-09-12tshark wouldn't link any more, as it doesn't link againstJörg Mayer1-0/+7
libportaudio, but version_info.c with libportaudio >= 19 needs to link against this. FIXME: Just print out >= 19 instead of real version string until someone finds a proper solution. svn path=/trunk/; revision=19219
2006-09-12Makefile.nmakeJörg Mayer1-3/+15
config.h.win32 - Use HAVE_LIBPORTAUDIO instead of HAVE_PORTAUDIO to make sure we use the same var everywhere (including sources and autofoo stuff). - Use PORTAUDIO_API_1 everywhere version_info.c - Include <portaudio.h> - Add some , and breaks when printing version infos. svn path=/trunk/; revision=19218
2006-09-12add version output (e.g. in the About box) for the following libraries:Ulf Lamping1-0/+67
-GnuTLS -Gcrypt -Kerberos (no version, only if compiled with MIT/HEIMDAL or without any kerberos) -PortAudio (version number only for V>=19, maybe need some fixing) Don't know how to use the line breaking stuff, if someone could help me here ... svn path=/trunk/; revision=19217
2006-08-17Include strutil.h.Gerald Combs1-2/+3
svn path=/trunk/; revision=18942
2006-08-13another place missing a call to utf_16to8(), the about box was showing ↵Ulf Lamping1-1/+1
"Windows XP S", where it should be "Windows XP Service Pack 2" dumpcap uses this too, so I had to duplicate utf_16to8 there :-( svn path=/trunk/; revision=18891
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