From 8fcd25916e7eb35aee322a4bcb0cc95bd1b54b5c Mon Sep 17 00:00:00 2001 From: "Matthias P. Braendli" Date: Sun, 21 Aug 2022 19:16:33 +0200 Subject: Common e1b296e: Check for HAVE_ZEROMQ before including zmq.hpp --- lib/RemoteControl.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'lib') 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 #include "RemoteControl.h" -#include "zmq.hpp" +#if defined(HAVE_ZEROMQ) + #include "zmq.hpp" +#endif using namespace std; -- cgit v1.2.3