Note whether we found remote pcap support in libpcap.

Change-Id: Ida20f7164d3132a72fdd6547905cd0af4e451917
Reviewed-on: https://code.wireshark.org/review/21590
Reviewed-by: Guy Harris <guy@alum.mit.edu>
This commit is contained in:
Guy Harris 2017-05-11 02:47:58 -07:00
parent 1be20bc4c2
commit 1ecf3b6645
1 changed files with 6 additions and 0 deletions

View File

@ -488,6 +488,12 @@ get_compiled_caplibs_version(GString *str)
* of libpcap with which we were compiled.
*/
g_string_append(str, "with libpcap");
#ifdef HAVE_PCAP_REMOTE
/*
* We have remote pcap support in libpcap.
*/
g_string_append(str, " (including remote capture support)");
#endif
/*
* XXX - these libraries are actually used only by dumpcap,