c5b466f
diff --git a/wsjtx/CMakeLists.txt b/wsjtx/CMakeLists.txt
79b5165
index 03b5dca..35b2642 100644
c5b466f
--- a/wsjtx/CMakeLists.txt
c5b466f
+++ b/wsjtx/CMakeLists.txt
9a1c675
@@ -838,11 +838,11 @@ find_program(ETAGS etags)
c5b466f
 #
c5b466f
 # Boost
c5b466f
 #
c5b466f
-set (Boost_NO_SYSTEM_PATHS TRUE)
c5b466f
+set (Boost_NO_SYSTEM_PATHS TRUE CACHE BOOL "")
c5b466f
 if (Boost_NO_SYSTEM_PATHS)
c5b466f
   set (BOOST_ROOT ${PROJECT_SOURCE_DIR}/boost)
c5b466f
 endif ()
c5b466f
-find_package (Boost 1.63 REQUIRED)
c5b466f
+find_package (Boost 1.60 REQUIRED)
c5b466f
 if (Boost_FOUND)
c5b466f
   include_directories (${Boost_INCLUDE_DIRS})
c5b466f
 endif ()
9a1c675
@@ -860,7 +860,7 @@ find_package (FFTW3 COMPONENTS double single threads REQUIRED)
c5b466f
 #
c5b466f
 # libhamlib setup
c5b466f
 #
c5b466f
-set (hamlib_STATIC 1)
c5b466f
+set (hamlib_STATIC 1 CACHE BOOL "")
c5b466f
 find_package (hamlib 3 REQUIRED)
c5b466f
 find_program (RIGCTL_EXE rigctl)
c5b466f
 find_program (RIGCTLD_EXE rigctld)
79b5165
@@ -1432,20 +1432,6 @@ install (TARGETS jt9 ft8code jt65code qra64code qra64sim jt9code jt4code
c5b466f
   BUNDLE DESTINATION ${CMAKE_INSTALL_BINDIR} COMPONENT runtime
c5b466f
   )
c5b466f
 
c5b466f
-install (PROGRAMS
c5b466f
-  ${RIGCTL_EXE}
c5b466f
-  DESTINATION ${CMAKE_INSTALL_BINDIR}
c5b466f
-  #COMPONENT runtime
c5b466f
-  RENAME rigctl-wsjtx${CMAKE_EXECUTABLE_SUFFIX}
c5b466f
-  )
c5b466f
-
c5b466f
-install (PROGRAMS
c5b466f
-  ${RIGCTLD_EXE}
c5b466f
-  DESTINATION ${CMAKE_INSTALL_BINDIR}
c5b466f
-  #COMPONENT runtime
c5b466f
-  RENAME rigctld-wsjtx${CMAKE_EXECUTABLE_SUFFIX}
c5b466f
-  )
c5b466f
-
c5b466f
 install (FILES
c5b466f
   README
c5b466f
   COPYING
c5b466f
diff --git a/wsjtx/HamlibTransceiver.hpp b/wsjtx/HamlibTransceiver.hpp
c5b466f
index c8c0f74..0136b98 100644
c5b466f
--- a/wsjtx/HamlibTransceiver.hpp
c5b466f
+++ b/wsjtx/HamlibTransceiver.hpp
c5b466f
@@ -10,6 +10,10 @@
c5b466f
 #include "TransceiverFactory.hpp"
c5b466f
 #include "PollingTransceiver.hpp"
c5b466f
 
c5b466f
+#ifndef RIG_PASSBAND_NOCHANGE
c5b466f
+#define RIG_PASSBAND_NOCHANGE RIG_PASSBAND_NORMAL
c5b466f
+#endif
c5b466f
+
c5b466f
 extern "C"
c5b466f
 {
c5b466f
   typedef struct rig RIG;