diff options
author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2024-11-25 20:41:57 +0100 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2024-11-25 20:56:21 +0100 |
commit | 23b5d884dbdb4ce6a20872cce6a48ea0eed39f39 (patch) | |
tree | 2785b4f4893feb5c4b0976d52b7dca008e3bb3a6 /src/Utils.cpp | |
parent | 8b5042b079afd9536a09bf72ead28cd19df0b9d9 (diff) | |
download | dabmod-23b5d884dbdb4ce6a20872cce6a48ea0eed39f39.tar.gz dabmod-23b5d884dbdb4ce6a20872cce6a48ea0eed39f39.tar.bz2 dabmod-23b5d884dbdb4ce6a20872cce6a48ea0eed39f39.zip |
Add some more fixes for compilation without zeromq
Diffstat (limited to 'src/Utils.cpp')
-rw-r--r-- | src/Utils.cpp | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/src/Utils.cpp b/src/Utils.cpp index 788d125..fa2fd5d 100644 --- a/src/Utils.cpp +++ b/src/Utils.cpp @@ -25,14 +25,17 @@ along with ODR-DabMod. If not, see <http://www.gnu.org/licenses/>. */ +#include "Utils.h" + #include <ctime> +#include <cstring> #include <sstream> -#include "Utils.h" -#include "GainControl.h" +#include <iomanip> +#include <pthread.h> #if defined(HAVE_PRCTL) # include <sys/prctl.h> #endif -#include <pthread.h> + static void printHeader() { |