From: Bill S. <g4...@cl...> - 2019-12-22 16:43:36
|
On 22/12/2019 16:36, Alessandro Gorobey via wsjt-devel wrote: > Hi all, > > I try to recompile wsjtx after a hamlib > git clone git://git.code.sf.net/u/bsomervi/hamlib src > git checkout integration > > hamlib compile go well, but seems as vfo_t this month change type from > int to unsigned int. > I rollback to a older version of hamlib and it work. Hi Sandro, this patch will fix the build: ---------------------- Transceiver/HamlibTransceiver.hpp ---------------------- index bcc040d23..fcc17eeb9 100644 @@ -10,13 +10,6 @@ #include "TransceiverFactory.hpp" #include "PollingTransceiver.hpp" -extern "C" -{ - typedef struct rig RIG; - struct rig_caps; - typedef int vfo_t; -} - // hamlib transceiver and PTT mostly delegated directly to hamlib Rig class class HamlibTransceiver final : public PollingTransceiver 73 Bill G4WJS. |