summaryrefslogtreecommitdiff
path: root/version_info.c
AgeCommit message (Collapse)AuthorFilesLines
2011-01-16Fix a Windows compiler warning;Bill Meier1-8/+8
Minor whitespace cleanup. svn path=/trunk/; revision=35563
2011-01-01New Year.Stig Bjørlykke1-1/+1
svn path=/trunk/; revision=35322
2010-12-01Fix bug #5453 "Help->About Wireshark mis-reports OS" (again) without the ↵Stephen Fisher1-1/+12
help of MSDN code fragments. svn path=/trunk/; revision=35090
2010-12-01Back out r35084 since it contains code fragments from MSDN, which are coveredStephen Fisher1-10/+1
under the "Microsoft Limited Public License" apparently. svn path=/trunk/; revision=35085
2010-11-30Fix bug #5453: Use GetSystemNativeInfo() function if found on the machine ↵Stephen Fisher1-1/+10
running Wireshark instead of GetSystemInfo(), so that we obtain the machine's actual architecture even when running under WOW64 x86 emulation. svn path=/trunk/; revision=35084
2010-10-21Fixed "Compiled with" information in the About box.Stig Bjørlykke1-3/+7
svn path=/trunk/; revision=34601
2010-08-31A GString has it's own length.Stig Bjørlykke1-1/+1
svn path=/trunk/; revision=34034
2010-07-15More information on getting the distribution name and release.Guy Harris1-0/+29
svn path=/trunk/; revision=33545
2010-07-15More details on getting the distribution name and version on Linux.Guy Harris1-1/+15
svn path=/trunk/; revision=33543
2010-07-15On OS X, give the OS version asGuy Harris1-3/+25
Mac OS X 10.x.y (Darwin a.b.c) rather than as Darwin a.b.c (Mac OS X 10.x.y) and also note that, on Linux, the lsb_release command might be able to give you the *distribution* name and version. svn path=/trunk/; revision=33542
2010-07-15Don't include headers we don't need (they might be generating externalGuy Harris1-8/+0
references to functions in libraries with which we're not necessarily being linked). svn path=/trunk/; revision=33535
2010-07-15Move the code to get version information for libraries used byGuy Harris1-129/+0
libwireshark into libwireshark, and call it only in programs linked with libwireshark. That way, programs that don't link with libwireshark don't have to link with libgcrypt or libgnutls solely so that they can say that they're linked with a particular version of libgcrypt or libgnutls. Don't link dumpcap with libgcrypt or libgnutls any more. svn path=/trunk/; revision=33531
2010-05-25From H.sivank: GtkOSXApplication support.Guy Harris1-3/+3
Call the various flavors of OS X integration just "OS X integration", not anything with "IGE" in it - it appears that, in some places, "ige-mac-integration" refers only to the older Carbon-based functions, although the library still appears to be called -ligemacintegration. Update the URLs for the information about the OS X integration libraries. Clean up help message for --with-pcap-remote. Clean up white space a bit. Speaking of white space, it's "Mac OS X", not "MacOS X". svn path=/trunk/; revision=32941
2010-05-19Detect clang and llvm-gcc.Guy Harris1-0/+6
svn path=/trunk/; revision=32905
2010-05-15Bruno Matos <bruno.matos@gmail.com>Jörg Mayer1-4/+4
In version_info.c file, if we put the Python include in first place we remove the warning/error "_POSIX_C_SOURCE redefined", as in this article: http://bytes.com/topic/python/answers/30009-warning-_posix_c_source-redefined . I had problems with CMake build. svn path=/trunk/; revision=32824
2010-04-24Tell, in the version info, if we were compiled 32- or 64-bit.Jeff Morriss1-0/+5
svn path=/trunk/; revision=32548
2010-04-19Disable usage of zlibVersion() on win32.Stig Bjørlykke1-1/+1
svn path=/trunk/; revision=32511
2010-04-17From Richard Brodie via bug 4606:Stig Bjørlykke1-0/+5
Display runtime version for libz, as well as build version. svn path=/trunk/; revision=32502
2010-01-01Happy New Year!Stig Bjørlykke1-1/+1
svn path=/trunk/; revision=31396
2009-12-21Switch to using a bundled version of the openSUSE Build Service packagesGerald Combs1-4/+0
for GNUTLS since they provide 32-bit and 64-bit Windows packages. We no longer have winposixtype.h, so remove its #includes and add a ssize_t typedef to config.h.win32. svn path=/trunk/; revision=31341
2009-12-18If we don't have PCRE and we do have GLib >= 2.14, use GRegexes for theGerald Combs1-1/+1
"matches" operator. svn path=/trunk/; revision=31302
2009-09-17Fix typo in comment.Guy Harris1-1/+1
svn path=/trunk/; revision=29955
2009-09-16Fix a typo.Bill Meier1-2/+2
svn path=/trunk/; revision=29951
2009-09-16Add info as to 32/64 bit and also if "Windows 7" to runtime version info.Bill Meier1-9/+38
svn path=/trunk/; revision=29950
2009-07-22Use "svn info" to fetch the version by default. Fetch the repository path asGerald Combs1-1/+1
well. Add the repository path to the version strings. svn path=/trunk/; revision=29171
2009-05-31From Kovarththanan Rajaratnam's patch in bug 3500:Stig Bjørlykke1-0/+14
Added info about python version. svn path=/trunk/; revision=28543
2009-04-01The second argument to Gestalt() is an SInt32, which, for backwardsGuy Harris1-5/+5
compatibility reasons, is a long rather than an int in ILP32 mode (probably dating back to the old 68000 days, when 32-bit arithmetic was slower than 16-bit arithmetic, so an int was 16 bits and a long 32 bits on some 68K machines) and is an int in LP64 mode. svn path=/trunk/; revision=27921
2009-01-08display runtime versions of GnuTLS and Gcrypt librariesTomas Kukosa1-0/+10
svn path=/trunk/; revision=27194
2009-01-08We had a roll-over of the calendar thingy.Jaap Keuter1-1/+1
svn path=/trunk/; revision=27190
2008-12-30Check in a modified version of Jaap's patch in bug 3162. This should fixGerald Combs1-0/+5
compilation under Visual C++ 6.0. svn path=/trunk/; revision=27136
2008-12-19Rename geoip.[ch] to geoip_db.[ch] so we don't collide with GeoIP.h. RenameGerald Combs1-1/+1
some functions to match. Add GeoIP lookups to the IP dissector. Add a preference for GeoIP lookups, which is disabled by default. svn path=/trunk/; revision=27063
2008-12-13Detect Windows Server 2008 in the runtime version info.Stig Bjørlykke1-3/+6
svn path=/trunk/; revision=26979
2008-10-27Added info about GeoIP. Only dump info about ADNS if without c-ares.Stig Bjørlykke1-6/+17
svn path=/trunk/; revision=26578
2008-09-02Fix a few Emacs "file variables" to have "safe" values.Bill Meier1-1/+1
That is: indent-tabs-mode: tabs --> indent-tabs-mode: t Also: fix a typo: set-tabs-mode --> indent-tabs-mode svn path=/trunk/; revision=26113
2008-08-23Fix a typo in a comment.Guy Harris1-1/+1
svn path=/trunk/; revision=26061
2008-08-12Added c-ares version string.Stig Bjørlykke1-1/+6
svn path=/trunk/; revision=25988
2008-08-07Add support for the c-ares asynchronous DNS resolution library to theGerald Combs1-0/+8
Windows build. Add support for async IPv6 lookups. Update the ADNS code slightly. This is not supported (yet) on the UNIX side. svn path=/trunk/; revision=25953
2008-06-30Move privileges.c and unicode-utils.c from epan to wsutil (so things likeJeff Morriss1-1/+1
capinfos and dumpcap don't need to depend on libwireshark nor directly pull in those modules). Because capinfos and editcap were only being linked with privileges.c if we had plugins, this allows those programs to be linked when someone is compiling --without-plugins. svn path=/trunk/; revision=25640
2008-05-07Fix some of the Errors/warnings detected by checkapi.Anders Broman1-41/+41
svn path=/trunk/; revision=25248
2008-03-05Don't add newline before LIBCAP, as this is done correct in end_string().Stig Bjørlykke1-1/+1
svn path=/trunk/; revision=24563
2008-03-04Add a POSIX capabilities blurb to get_compiled_version_info().Gerald Combs1-1/+16
svn path=/trunk/; revision=24561
2008-01-15Bump dateStig Bjørlykke1-1/+1
svn path=/trunk/; revision=24096
2007-11-30first steps to support MSVC 2008 Express EditionUlf Lamping1-0/+1
svn path=/trunk/; revision=23691
2007-11-10Add MacOS X version next to the Darwin version in version outputs.Stephen Fisher1-1/+28
svn path=/trunk/; revision=23418
2007-09-29We don't use NetSNMP any more.Guy Harris1-4/+0
svn path=/trunk/; revision=23021
2007-09-15Add routines under Windows to check if npf.sys is running, and toGerald Combs1-0/+30
fetch the major OS version. If we're running Windows >= 6 (Vista) _and_ npf.sys isn't running, warn the user in Wireshark and TShark. Add a recent prefs item to disable the warning in Wireshark. svn path=/trunk/; revision=22877
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