Re: [Wireshark-dev] QT with cmake

2014-10-21 Thread Joerg Mayer
On Tue, Oct 21, 2014 at 03:13:01PM +0200, Dario Lombardo wrote: > On Tue, Oct 21, 2014 at 2:48 PM, Peter Wu wrote: > > > > > Have you tried to clear your build dir? The QtGui/QAction file is located > > in the > > qt4 include directory, in qt5 it is located at QtWidgets/QAction. > > > > I've comp

[Wireshark-dev] QT with cmake

2014-10-21 Thread Dario Lombardo
Hi list I tried to compile the master of wireshark using cmake. mkdir build cd build cmake .. make In run/ I can find wireshark-gtk but not qt. Any specific command to pass to cmake to have it? I am able to obtain qt executable using autotools (meaning that my qt dev subsystem should be fine). T

Re: [Wireshark-dev] QT with cmake

2014-10-21 Thread Dario Lombardo
On Tue, Oct 21, 2014 at 2:48 PM, Peter Wu wrote: > > Have you tried to clear your build dir? The QtGui/QAction file is located > in the > qt4 include directory, in qt5 it is located at QtWidgets/QAction. > > I've completely deleted the build dir and started over. Same output. [ 79%] Building CXX

Re: [Wireshark-dev] QT with cmake

2014-10-21 Thread Peter Wu
On Tuesday 21 October 2014 14:11:25 Dario Lombardo wrote: > On Tue, Oct 21, 2014 at 1:20 PM, Peter Wu wrote: > > > > > What distro are you using? For Debian/Ubuntu you need to install > > qttools5-dev. > > > > It is exactly what I'm using (ubuntu 14.04). I've installed qttools5-dev > and compil

Re: [Wireshark-dev] QT with cmake

2014-10-21 Thread Dario Lombardo
On Tue, Oct 21, 2014 at 1:20 PM, Peter Wu wrote: > > What distro are you using? For Debian/Ubuntu you need to install > qttools5-dev. > It is exactly what I'm using (ubuntu 14.04). I've installed qttools5-dev and compilation made few steps ahead, but then stopped with Scanning dependencies of

Re: [Wireshark-dev] [Wireshark-commits] rev 44812: /trunk/ /trunk/: configure.ac version_info.c

2014-10-21 Thread Stig Bjørlykke
On Sat, Sep 8, 2012 at 9:46 AM, wrote: > Log: > We no longer use Gestalt(), so there's no need to check for it. > > We *do*, however, use CFPropertyListCreateWithStream(), so we need to > check for it, and, if we're able to use the OS X frameworks at all, use > CFPropertyListCreateFromStream(

[Wireshark-dev] IO graph also takes the header

2014-10-21 Thread Vishnu Bhatt
Hello, I've some ftp-data frames which I am plotting in IO graph under statistics. The bytes/sec in Wireshark is considering the header of Ethernet + IP + TCP as well but I want only TCP payload (not the entire frame) to be taken to calculate the throughput, is there any way to do this? "DISCL

Re: [Wireshark-dev] QT with cmake

2014-10-21 Thread Peter Wu
On Tuesday 21 October 2014 13:12:18 Dario Lombardo wrote: > Well... after installing some other qt5 packages I get > > CMake Error at ui/qt/CMakeLists.txt:306 (QT5_ADD_TRANSLATION): > Unknown CMake command "QT5_ADD_TRANSLATION". On Arch Linux, the package qt5-tools provides the following file w

Re: [Wireshark-dev] QT with cmake

2014-10-21 Thread Dario Lombardo
Well... after installing some other qt5 packages I get CMake Error at ui/qt/CMakeLists.txt:306 (QT5_ADD_TRANSLATION): Unknown CMake command "QT5_ADD_TRANSLATION". On Tue, Oct 21, 2014 at 11:49 AM, Peter Wu wrote: > On Tuesday 21 October 2014 11:20:54 Dario Lombardo wrote: > > I tried to com

Re: [Wireshark-dev] QT with cmake

2014-10-21 Thread Peter Wu
On Tuesday 21 October 2014 11:20:54 Dario Lombardo wrote: > I tried to compile the master of wireshark using cmake. > > mkdir build > cd build > cmake .. > make > > In run/ I can find wireshark-gtk but not qt. Any specific command to pass > to cmake to have it? I am able to obtain qt executable u

Re: [Wireshark-dev] QT with cmake

2014-10-21 Thread Michal Orynicz
Please check if You have QT flags set up properly. Using ccmake or cmake-gui might help with checking those up. There is a switch to chose between QT5 and QT4 in cmake setup, which might be the culprit. On 21 October 2014 11:38, Dario Lombardo wrote: > Well... it's the first thing I searched for

Re: [Wireshark-dev] QT with cmake

2014-10-21 Thread Dario Lombardo
Well... it's the first thing I searched for, since I compiled it with autotools and I noticed that switch. But actually wireshark/build$ find . -name wireshark wireshark/build$ find . -name wireshark-gtk ./run/wireshark-gtk wireshark/build$ wireshark qt seems not to be compiled at all. On Tue,

Re: [Wireshark-dev] QT with cmake

2014-10-21 Thread Michal Orynicz
Hi, right now wireshark-qt is renamed to wireshark, and wireshark was renamed to wireshark-gtk. This is to push people to use the new UI. So please check if Your wireshark binary is the one You are searching for :) On 21 October 2014 11:20, Dario Lombardo wrote: > Hi list > I tried to compile th

[Wireshark-dev] QT with cmake

2014-10-21 Thread Dario Lombardo
Hi list I tried to compile the master of wireshark using cmake. mkdir build cd build cmake .. make In run/ I can find wireshark-gtk but not qt. Any specific command to pass to cmake to have it? I am able to obtain qt executable using autotools (meaning that my qt dev subsystem should be fine). T