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 | |
parent | 8b5042b079afd9536a09bf72ead28cd19df0b9d9 (diff) | |
download | dabmod-23b5d884dbdb4ce6a20872cce6a48ea0eed39f39.tar.gz dabmod-23b5d884dbdb4ce6a20872cce6a48ea0eed39f39.tar.bz2 dabmod-23b5d884dbdb4ce6a20872cce6a48ea0eed39f39.zip |
Add some more fixes for compilation without zeromq
-rw-r--r-- | src/Utils.cpp | 9 | ||||
-rw-r--r-- | src/Utils.h | 1 |
2 files changed, 6 insertions, 4 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() { diff --git a/src/Utils.h b/src/Utils.h index 584a756..b71c3b2 100644 --- a/src/Utils.h +++ b/src/Utils.h @@ -37,7 +37,6 @@ #include <cstdio> #include <ctime> #include <cstdlib> -#include <cstdint> #include <unistd.h> #include "ConfigParser.h" |