From d9d73e4bf953f1fdf5afb6cfc5fcec34dbe67839 Mon Sep 17 00:00:00 2001 From: Olaf Mandel Date: Fri, 14 Feb 2014 14:40:51 +0100 Subject: [PATCH] Clarify configure messages for --with-poller=... --- acinclude.m4 | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/acinclude.m4 b/acinclude.m4 index c5c27481..6e41b103 100644 --- a/acinclude.m4 +++ b/acinclude.m4 @@ -876,21 +876,21 @@ dnl # Choose polling system dnl ################################################################################ AC_DEFUN([LIBZMQ_CHECK_POLLER], [{ - # Allow user to disable doc build + # Allow user to override poller autodetection AC_ARG_WITH([poller], [AS_HELP_STRING([--with-poller], [choose polling system manually. valid values are kqueue, epoll, devpoll, poll or select [default=autodetect]])]) - AC_MSG_CHECKING([for suitable polling system]) - case "${with_poller}" in kqueue|epoll|devpoll|poll|select) # User has chosen polling system + AC_MSG_CHECKING([for suitable polling system skipped for preselect]) libzmq_cv_poller="${with_poller}" ;; *) # try to find suitable polling system. the order of testing is: # kqueue -> epoll -> devpoll -> poll -> select + AC_MSG_CHECKING([for suitable polling system]) for subsystem in kqueue epoll devpoll poll select; do case "${subsystem}" in