diff options
author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2022-08-21 19:14:28 +0200 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2022-08-21 19:14:28 +0200 |
commit | 1383ded72f3796a00eeb25551160f66eb89f378e (patch) | |
tree | ccc417c64a167e69fff8ac667b352e0343f6bb1b | |
parent | 49597be93b0dc05fe13164e126a5e94326e51556 (diff) | |
parent | 388d247d6799bc3ba9fda7b208a620d13db8f8ad (diff) | |
download | dabmod-1383ded72f3796a00eeb25551160f66eb89f378e.tar.gz dabmod-1383ded72f3796a00eeb25551160f66eb89f378e.tar.bz2 dabmod-1383ded72f3796a00eeb25551160f66eb89f378e.zip |
Merge branch 'next' into dexter
-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; |