aboutsummaryrefslogtreecommitdiffstats
path: root/version_info.c
AgeCommit message (Collapse)AuthorFilesLines
2011-07-16Provide information regarding thred support.tuexen1-0/+5
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@38058 f5534014-38df-0310-8fa8-9805f1628bb7
2011-07-11In version_info.c, assume we always have the "matches" operator. Ingerald1-6/+0
capture_opts.c, assume our output filename has been passed through arg_list_utf_16to8(). git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@37974 f5534014-38df-0310-8fa8-9805f1628bb7
2011-06-29Show locale in version info (if !win32).stig1-0/+11
This may help us identifying bugs related to locale. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@37829 f5534014-38df-0310-8fa8-9805f1628bb7
2011-06-28Replace all strerror() with g_strerror().stig1-1/+1
Remove our local strerror implementation. Mark strerror as locale unsafe API. This fixes bug 5715. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@37812 f5534014-38df-0310-8fa8-9805f1628bb7
2011-06-11The "shared by every program in the Wireshark suite, including dumpcap"guy1-8/+0
version information doesn't include Python version information (only programs using libwireshark have that) or GeoIP version information (ditto). Don't include headers required only for that information; hopefully this will keep dumpcap from requiring the Python library on Windows. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@37650 f5534014-38df-0310-8fa8-9805f1628bb7
2011-05-23(Trivial) Testing _MSC_FULL_VER can be done at compile time.wmeier1-15/+17
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@37366 f5534014-38df-0310-8fa8-9805f1628bb7
2011-01-16Fix a Windows compiler warning;wmeier1-8/+8
Minor whitespace cleanup. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@35563 f5534014-38df-0310-8fa8-9805f1628bb7
2011-01-01New Year.stig1-1/+1
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@35322 f5534014-38df-0310-8fa8-9805f1628bb7
2010-12-01Fix bug #5453 "Help->About Wireshark mis-reports OS" (again) without the ↵sfisher1-1/+12
help of MSDN code fragments. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@35090 f5534014-38df-0310-8fa8-9805f1628bb7
2010-12-01Back out r35084 since it contains code fragments from MSDN, which are coveredsfisher1-10/+1
under the "Microsoft Limited Public License" apparently. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@35085 f5534014-38df-0310-8fa8-9805f1628bb7
2010-11-30Fix bug #5453: Use GetSystemNativeInfo() function if found on the machine ↵sfisher1-1/+10
running Wireshark instead of GetSystemInfo(), so that we obtain the machine's actual architecture even when running under WOW64 x86 emulation. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@35084 f5534014-38df-0310-8fa8-9805f1628bb7
2010-10-21Fixed "Compiled with" information in the About box.stig1-3/+7
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@34601 f5534014-38df-0310-8fa8-9805f1628bb7
2010-08-31A GString has it's own length.stig1-1/+1
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@34034 f5534014-38df-0310-8fa8-9805f1628bb7
2010-07-15More information on getting the distribution name and release.guy1-0/+29
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@33545 f5534014-38df-0310-8fa8-9805f1628bb7
2010-07-15More details on getting the distribution name and version on Linux.guy1-1/+15
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@33543 f5534014-38df-0310-8fa8-9805f1628bb7
2010-07-15On OS X, give the OS version asguy1-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. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@33542 f5534014-38df-0310-8fa8-9805f1628bb7
2010-07-15Don't include headers we don't need (they might be generating externalguy1-8/+0
references to functions in libraries with which we're not necessarily being linked). git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@33535 f5534014-38df-0310-8fa8-9805f1628bb7
2010-07-15Move the code to get version information for libraries used byguy1-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. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@33531 f5534014-38df-0310-8fa8-9805f1628bb7
2010-05-25From H.sivank: GtkOSXApplication support.guy1-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". git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@32941 f5534014-38df-0310-8fa8-9805f1628bb7
2010-05-19Detect clang and llvm-gcc.guy1-0/+6
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@32905 f5534014-38df-0310-8fa8-9805f1628bb7
2010-05-15Bruno Matos <bruno.matos@gmail.com>jmayer1-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. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@32824 f5534014-38df-0310-8fa8-9805f1628bb7
2010-04-24Tell, in the version info, if we were compiled 32- or 64-bit.morriss1-0/+5
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@32548 f5534014-38df-0310-8fa8-9805f1628bb7
2010-04-19Disable usage of zlibVersion() on win32.stig1-1/+1
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@32511 f5534014-38df-0310-8fa8-9805f1628bb7
2010-04-17From Richard Brodie via bug 4606:stig1-0/+5
Display runtime version for libz, as well as build version. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@32502 f5534014-38df-0310-8fa8-9805f1628bb7
2010-01-01Happy New Year!stig1-1/+1
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@31396 f5534014-38df-0310-8fa8-9805f1628bb7
2009-12-21Switch to using a bundled version of the openSUSE Build Service packagesgerald1-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. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@31341 f5534014-38df-0310-8fa8-9805f1628bb7
2009-12-18If we don't have PCRE and we do have GLib >= 2.14, use GRegexes for thegerald1-1/+1
"matches" operator. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@31302 f5534014-38df-0310-8fa8-9805f1628bb7
2009-09-17Fix typo in comment.guy1-1/+1
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@29955 f5534014-38df-0310-8fa8-9805f1628bb7
2009-09-16Fix a typo.wmeier1-2/+2
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@29951 f5534014-38df-0310-8fa8-9805f1628bb7
2009-09-16Add info as to 32/64 bit and also if "Windows 7" to runtime version info.wmeier1-9/+38
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@29950 f5534014-38df-0310-8fa8-9805f1628bb7
2009-07-22Use "svn info" to fetch the version by default. Fetch the repository path asgerald1-1/+1
well. Add the repository path to the version strings. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@29171 f5534014-38df-0310-8fa8-9805f1628bb7
2009-05-31From Kovarththanan Rajaratnam's patch in bug 3500:stig1-0/+14
Added info about python version. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@28543 f5534014-38df-0310-8fa8-9805f1628bb7
2009-04-01The second argument to Gestalt() is an SInt32, which, for backwardsguy1-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. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@27921 f5534014-38df-0310-8fa8-9805f1628bb7
2009-01-08display runtime versions of GnuTLS and Gcrypt librarieskukosa1-0/+10
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@27194 f5534014-38df-0310-8fa8-9805f1628bb7
2009-01-08We had a roll-over of the calendar thingy.jake1-1/+1
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@27190 f5534014-38df-0310-8fa8-9805f1628bb7
2008-12-30Check in a modified version of Jaap's patch in bug 3162. This should fixgerald1-0/+5
compilation under Visual C++ 6.0. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@27136 f5534014-38df-0310-8fa8-9805f1628bb7
2008-12-19Rename geoip.[ch] to geoip_db.[ch] so we don't collide with GeoIP.h. Renamegerald1-1/+1
some functions to match. Add GeoIP lookups to the IP dissector. Add a preference for GeoIP lookups, which is disabled by default. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@27063 f5534014-38df-0310-8fa8-9805f1628bb7
2008-12-13Detect Windows Server 2008 in the runtime version info.stig1-3/+6
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@26979 f5534014-38df-0310-8fa8-9805f1628bb7
2008-10-27Added info about GeoIP. Only dump info about ADNS if without c-ares.stig1-6/+17
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@26578 f5534014-38df-0310-8fa8-9805f1628bb7
2008-09-02Fix a few Emacs "file variables" to have "safe" values.wmeier1-1/+1
That is: indent-tabs-mode: tabs --> indent-tabs-mode: t Also: fix a typo: set-tabs-mode --> indent-tabs-mode git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@26113 f5534014-38df-0310-8fa8-9805f1628bb7
2008-08-23Fix a typo in a comment.guy1-1/+1
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@26061 f5534014-38df-0310-8fa8-9805f1628bb7
2008-08-12Added c-ares version string.stig1-1/+6
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@25988 f5534014-38df-0310-8fa8-9805f1628bb7
2008-08-07Add support for the c-ares asynchronous DNS resolution library to thegerald1-0/+8
Windows build. Add support for async IPv6 lookups. Update the ADNS code slightly. This is not supported (yet) on the UNIX side. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@25953 f5534014-38df-0310-8fa8-9805f1628bb7
2008-06-30Move privileges.c and unicode-utils.c from epan to wsutil (so things likemorriss1-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. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@25640 f5534014-38df-0310-8fa8-9805f1628bb7
2008-05-07Fix some of the Errors/warnings detected by checkapi.etxrab1-41/+41
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@25248 f5534014-38df-0310-8fa8-9805f1628bb7
2008-03-05Don't add newline before LIBCAP, as this is done correct in end_string().stig1-1/+1
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@24563 f5534014-38df-0310-8fa8-9805f1628bb7
2008-03-04Add a POSIX capabilities blurb to get_compiled_version_info().gerald1-1/+16
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@24561 f5534014-38df-0310-8fa8-9805f1628bb7
2008-01-15Bump datestig1-1/+1
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@24096 f5534014-38df-0310-8fa8-9805f1628bb7
2007-11-30first steps to support MSVC 2008 Express Editionulfl1-0/+1
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@23691 f5534014-38df-0310-8fa8-9805f1628bb7
2007-11-10Add MacOS X version next to the Darwin version in version outputs.sfisher1-1/+28
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@23418 f5534014-38df-0310-8fa8-9805f1628bb7