- Make dumpcap build with the new bundle.

- Use the correct bundle id for GTK3

svn path=/trunk/; revision=46586
This commit is contained in:
Anders Broman 2012-12-18 11:58:22 +00:00
parent 4e254a907c
commit 2977bde9f1
2 changed files with 5 additions and 1 deletions

View File

@ -272,7 +272,7 @@ PKG_SUFIX=ws
GDK_DLL=libgdk-3-0.dll
GTK_DLL=libgtk-3-0.dll
PKG_SUFIX=ws
GTK_PKG=3.4.2-2.9
GTK_PKG=3.4.0-3.9
#GTK_PKG=3.4.4-2.1
!ENDIF

View File

@ -2128,7 +2128,11 @@ cap_pipe_open_live(char *pipename,
}
#ifdef _WIN32
else {
#if GLIB_CHECK_VERSION(2,31,0)
g_thread_new("cap_pipe_open_live", &cap_thread_read, pcap_opts);
#else
g_thread_create(&cap_thread_read, pcap_opts, FALSE, NULL);
#endif
pcap_opts->cap_pipe_buf = (char *) &magic;
pcap_opts->cap_pipe_bytes_read = 0;