I've downloaded the latest package (wireshark-1.11.0-SVN-50460.tar.bz2) and after running ./configure I get the following output as last lines:
I've installed Qt 5 through package ubuntu-sdk, I don't know which version of GTK+ I have or how to upgrade it (didn't found anything on the web) Is GTK+ mandatory or is it possible to use Qt as suggested by the output? asked 09 Jul '13, 07:03 ojay edited 09 Jul '13, 10:00 Guy Harris ♦♦ |
One Answer:
It is possible but you have to specify Do note that the Qt version is under development--you probably should only be using it if you are planning on developing it (adding code to Wireshark to expand this port). answered 09 Jul '13, 09:58 JeffMorriss ♦ |
Thank you! I got this output:
Do I also need to install package "qt-sdk"? I just checked and that didn't get installed with "ubuntu-sdk".
Anyway, how can I use GTK? I have other applications installed that run on GTK without problems (Sublime Text, ghex). How can I solve this?
How can you use GTK+? By installing the GTK+ development package (I don't know what it's called off hand, but look in the package manager for a package whose name contains "gtk" and "devel"), and configuring with
--with-gtk2
or--with-gtk3
, depending on whether it's a package for GTK+ 2 or GTK+ 3.How can you use Qt? By installing the Qt development package (see previous comment, but substitute "qt" for "gtk"), making sure that the directory containing Qt's .pc files is in your
PKG_CONFIG_PATH
, and configuring with--with-qt
.