Disable usage of zlibVersion() on win32.

svn path=/trunk/; revision=32511
This commit is contained in:
Stig Bjørlykke 2010-04-19 06:39:45 +00:00
parent 99054f9413
commit 534dfde65c
1 changed files with 1 additions and 1 deletions

View File

@ -532,7 +532,7 @@ get_runtime_version_info(GString *str, void (*additional_info)(GString *))
get_runtime_pcap_version(str);
/* zlib */
#ifdef HAVE_LIBZ
#if defined(HAVE_LIBZ) && !defined(_WIN32)
g_string_append_printf(str, ", with libz %s", zlibVersion());
#endif