From f716b571baf59c1b622c7666bb8bf2905126a3d4 Mon Sep 17 00:00:00 2001 From: Martin Sustrik Date: Sun, 24 Jul 2011 18:13:29 +0200 Subject: Only one polling mechanism is compiled Till now wrappers for all the polling mechanisms available on the given platform were compiled, although only one of them was used. This patch compiles just the used one. This can make libzmq binary more concise. Signed-off-by: Martin Sustrik --- src/select.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'src/select.cpp') diff --git a/src/select.cpp b/src/select.cpp index 5d5ce5d..0ecdcd7 100644 --- a/src/select.cpp +++ b/src/select.cpp @@ -18,6 +18,9 @@ along with this program. If not, see . */ +#include "select.hpp" +#if defined ZMQ_USE_SELECT + #include "platform.hpp" #if defined ZMQ_HAVE_WINDOWS #include "windows.hpp" @@ -35,7 +38,6 @@ #include #include -#include "select.hpp" #include "err.hpp" #include "config.hpp" #include "i_poll_events.hpp" @@ -209,3 +211,4 @@ bool zmq::select_t::is_retired_fd (const fd_entry_t &entry) return (entry.fd == retired_fd); } +#endif -- cgit v1.2.3