From 1ecf3b6645924f242b040fe518071ea62fc16e0a Mon Sep 17 00:00:00 2001 From: Guy Harris Date: Thu, 11 May 2017 02:47:58 -0700 Subject: Note whether we found remote pcap support in libpcap. Change-Id: Ida20f7164d3132a72fdd6547905cd0af4e451917 Reviewed-on: https://code.wireshark.org/review/21590 Reviewed-by: Guy Harris --- caputils/capture-pcap-util-unix.c | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'caputils/capture-pcap-util-unix.c') diff --git a/caputils/capture-pcap-util-unix.c b/caputils/capture-pcap-util-unix.c index 9319d55a5d..362317e914 100644 --- a/caputils/capture-pcap-util-unix.c +++ b/caputils/capture-pcap-util-unix.c @@ -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, -- cgit v1.2.1