diff options
author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2022-08-21 19:16:17 +0200 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2022-08-21 19:16:17 +0200 |
commit | e2929565c4a0d2bcacae1d30a126d72a45061501 (patch) | |
tree | 89edd6d7938ac59fc92cea3071dc5f25b70c0fb7 /lib | |
parent | 913cd43139d7b5d6eac166a01ac09a754f2bd013 (diff) | |
download | dabmux-e2929565c4a0d2bcacae1d30a126d72a45061501.tar.gz dabmux-e2929565c4a0d2bcacae1d30a126d72a45061501.tar.bz2 dabmux-e2929565c4a0d2bcacae1d30a126d72a45061501.zip |
Common e1b296e: Check for HAVE_ZEROMQ before including zmq.hpp
Diffstat (limited to 'lib')
-rw-r--r-- | lib/RemoteControl.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/RemoteControl.cpp b/lib/RemoteControl.cpp index 9ca8d22..30dcb60 100644 --- a/lib/RemoteControl.cpp +++ b/lib/RemoteControl.cpp @@ -29,7 +29,9 @@ #include <algorithm> #include "RemoteControl.h" -#include "zmq.hpp" +#if defined(HAVE_ZEROMQ) + #include "zmq.hpp" +#endif using namespace std; |