From 83bfb10b85fbc1b9ec1dfcaf4bc8a894b035d6a8 Mon Sep 17 00:00:00 2001 From: Elliott Sales de Andrade Date: Tue, 22 Jan 2019 02:52:42 -0500 Subject: [PATCH 1/2] Fix broken test macro condition. Signed-off-by: Elliott Sales de Andrade --- tests/active_poller.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/active_poller.cpp b/tests/active_poller.cpp index ebc5a0c..815a5b6 100644 --- a/tests/active_poller.cpp +++ b/tests/active_poller.cpp @@ -2,7 +2,7 @@ #include "testutil.hpp" -#if defined(ZMQ_CPP11) && defined(ZMQ_BUILD_DRAFT_API) +#if defined(ZMQ_CPP11) && defined(ZMQ_BUILD_DRAFT_API) && defined(ZMQ_HAVE_POLLER) #include #include -- 2.26.2