FIX: wrong directive placement prevent building witout HAMLIB

This commit is contained in:
vsonnier 2017-01-03 18:41:38 +01:00
parent 2cb540e44b
commit 89cac5db88
3 changed files with 7 additions and 3 deletions

View File

@ -179,9 +179,10 @@ private:
std::atomic<float> spectrumAvgSpeed, mainSplit, visSplit, bookmarkSplit; std::atomic<float> spectrumAvgSpeed, mainSplit, visSplit, bookmarkSplit;
std::atomic_int dbOffset; std::atomic_int dbOffset;
std::vector<SDRManualDef> manualDevices; std::vector<SDRManualDef> manualDevices;
std::atomic_bool bookmarksVisible;
#if USE_HAMLIB #if USE_HAMLIB
std::atomic_int rigModel, rigRate; std::atomic_int rigModel, rigRate;
std::string rigPort; std::string rigPort;
std::atomic_bool rigEnabled, rigFollowMode, rigControlMode, rigCenterLock, rigFollowModem, bookmarksVisible; std::atomic_bool rigEnabled, rigFollowMode, rigControlMode, rigCenterLock, rigFollowModem;
#endif #endif
}; };

View File

@ -189,6 +189,9 @@ private:
bool lowPerfMode; bool lowPerfMode;
wxMenuItem *hideBookmarksItem;
bool saveDisabled;
#ifdef USE_HAMLIB #ifdef USE_HAMLIB
void enableRig(); void enableRig();
void disableRig(); void disableRig();
@ -201,7 +204,7 @@ private:
wxMenuItem *rigCenterLockMenuItem; wxMenuItem *rigCenterLockMenuItem;
wxMenuItem *rigFollowModemMenuItem; wxMenuItem *rigFollowModemMenuItem;
wxMenuItem *sdrIFMenuItem; wxMenuItem *sdrIFMenuItem;
wxMenuItem *hideBookmarksItem;
std::map<int, wxMenuItem *> rigSerialMenuItems; std::map<int, wxMenuItem *> rigSerialMenuItems;
std::map<int, wxMenuItem *> rigModelMenuItems; std::map<int, wxMenuItem *> rigModelMenuItems;
int rigModel; int rigModel;
@ -211,7 +214,6 @@ private:
std::string rigPort; std::string rigPort;
int numRigs; int numRigs;
bool rigInit; bool rigInit;
bool saveDisabled;
#endif #endif
wxDECLARE_EVENT_TABLE(); wxDECLARE_EVENT_TABLE();

View File

@ -9,6 +9,7 @@
#include <algorithm> #include <algorithm>
#include "DemodulatorMgr.h" #include "DemodulatorMgr.h"
#include "CubicSDR.h"
#if USE_HAMLIB #if USE_HAMLIB
#include "RigThread.h" #include "RigThread.h"