Difference between revisions of "Tshark"

From VoIPmonitor.org
Jump to navigation Jump to search
(Created page with "= static tshark build = p.p1 {margin: 0.0px 0.0px 0.0px 0.0px; font: 14.0px 'Courier New'; color: #cccccc; background-color: #000000}span.s1 {font-variant-ligatures: no-commo...")
 
Line 1: Line 1:
 
= static tshark build =
 
= static tshark build =
  
p.p1 {margin: 0.0px 0.0px 0.0px 0.0px; font: 14.0px 'Courier New'; color: #cccccc; background-color: #000000}span.s1 {font-variant-ligatures: no-common-ligatures}
+
wget https://1.eu.dl.wireshark.org/src/wireshark-2.2.4.tar.bz2
LDFLAGS="-L/opt/libc/lib -Wl,--allow-multiple-definition" ./configure --prefix=/usr/local/myshark --disable-wireshark --enable-static=yes --enable-shared=no --disable-androiddump --disable-rawshark --disable-dftest --disable-ciscodump --disable-sshdump --disable-randpktdump --disable-text2pcap --disable-dumpcap
+
 
 +
LDFLAGS="-L/opt/libc/lib -Wl,--allow-multiple-definition" ./configure --prefix=/usr/local/myshark \
 +
--disable-wireshark --enable-static=yes --enable-shared=no --disable-androiddump --disable-rawshark --disable-dftest \
 +
--disable-ciscodump --disable-sshdump --disable-randpktdump --disable-text2pcap --disable-dumpcap
 +
 
 +
Edit Makefile
 +
 
 +
add "-lgpg-error -ldl -lpcre -lgmp" to the end of this line: "$(AM_V_CCLD)$(tshark_LINK) $(tshark_OBJECTS) $(tshark_LDADD) $(LIBS)"
 +
change this line: "$(AM_V_CCLD)$(LINK) $(mergecap_OBJECTS) $(mergecap_LDADD) $(LIBS)" to this: "$(AM_V_CCLD)$(tshark_LINK) $(mergecap_OBJECTS) $(mergecap_LDADD) $(LIBS) -lpcre -ldl"

Revision as of 14:38, 20 February 2017

static tshark build

wget https://1.eu.dl.wireshark.org/src/wireshark-2.2.4.tar.bz2
LDFLAGS="-L/opt/libc/lib -Wl,--allow-multiple-definition" ./configure --prefix=/usr/local/myshark \
--disable-wireshark --enable-static=yes --enable-shared=no --disable-androiddump --disable-rawshark --disable-dftest \
--disable-ciscodump --disable-sshdump --disable-randpktdump --disable-text2pcap --disable-dumpcap

Edit Makefile

add "-lgpg-error -ldl -lpcre -lgmp" to the end of this line: "$(AM_V_CCLD)$(tshark_LINK) $(tshark_OBJECTS) $(tshark_LDADD) $(LIBS)"
change this line: "$(AM_V_CCLD)$(LINK) $(mergecap_OBJECTS) $(mergecap_LDADD) $(LIBS)" to this: "$(AM_V_CCLD)$(tshark_LINK) $(mergecap_OBJECTS) $(mergecap_LDADD) $(LIBS) -lpcre -ldl"