Hi I installed gtk+-3.22.5 from src and then installed wireshark-2.2.3 from src in Debian. but after 'make' wireshark, when running "./wireshark-gtk" I watched this error and wireshark didn't work: "wireshark-2.2.3/.libs/lt-wireshark-gtk: symbol lookup error: /usr/src/wireshark-2.2.3/.libs/lt-wireshark-gtk: undefined symbol: gtk_scrolled_window_set_overlay_scrolling" can you help me to solve this issue? thank you asked 05 Jan '17, 03:54 bita |
One Answer:
The documentation says it's there since GTK 3.16, so lets see. First of all check that that new GTK library is indeed loaded by Wireshark. Use this command in your build direcory:
It should show the GTK library used:
If so then confirm the function is there (substitute your shared objects file):
If it's there it shows:
answered 05 Jan '17, 09:41 Jaap ♦ |