From a6921c79ab84b1729ed47372118cdf1b0b38875a Mon Sep 17 00:00:00 2001 From: Dario Lombardo Date: Fri, 4 Mar 2016 10:53:56 +0100 Subject: extcap: add ciscodump. Ciscodump is a new extcap that allows packet capture on Cisco routers (IOS 12.4 and later) through SSH. Change-Id: Ic9c5be01d3bd0112116f7fc9fa10e26c1552b007 Reviewed-on: https://code.wireshark.org/review/13886 Reviewed-by: Roland Knall --- extcap/Makefile.am | 19 +++++++++++++++++-- 1 file changed, 17 insertions(+), 2 deletions(-) (limited to 'extcap/Makefile.am') diff --git a/extcap/Makefile.am b/extcap/Makefile.am index 4566c9d782..d4fee3baa1 100644 --- a/extcap/Makefile.am +++ b/extcap/Makefile.am @@ -34,9 +34,10 @@ EXTRA_DIST = \ extcap_PROGRAMS = \ @androiddump_bin@ \ @randpktdump_bin@ \ - @sshdump_bin@ + @sshdump_bin@ \ + @ciscodump_bin@ -EXTRA_PROGRAMS = androiddump randpktdump sshdump +EXTRA_PROGRAMS = androiddump randpktdump sshdump ciscodump if ENABLE_STATIC androiddump_LDFLAGS = -Wl,-static -all-static @@ -78,3 +79,17 @@ sshdump_LDADD = \ @GLIB_LIBS@ \ @LIBSSH_LIBS@ \ @SOCKET_LIBS@ + +if ENABLE_STATIC + ciscodump_LDFLAGS = -Wl,-static -all-static +else + ciscodump_LDFLAGS = -export-dynamic +endif + +# Libraries and plugin flags with which to link ciscodump. +ciscodump_LDADD = \ + ../wiretap/libwiretap.la \ + ../wsutil/libwsutil.la \ + @GLIB_LIBS@ \ + @LIBSSH_LIBS@ \ + @SOCKET_LIBS@ -- cgit v1.2.1