aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--CHANGES6
-rwxr-xr-xconfigure17
-rw-r--r--configure.ac10
-rw-r--r--main/Makefile5
4 files changed, 37 insertions, 1 deletions
diff --git a/CHANGES b/CHANGES
index 4c2329f5b..5d027a055 100644
--- a/CHANGES
+++ b/CHANGES
@@ -566,3 +566,9 @@ Miscellaneous
turned on, via the CHANNEL(trace) dialplan function. Could be useful for
dialplan debugging.
* iLBC source code no longer included (see UPGRADE.txt for details)
+ * A new option for the configure script, --enable-internal-poll, has been added
+ for use with systems which may have a buggy implementation of the poll system
+ call. If you notice odd behavior such as the CLI being unresponsive on remote
+ consoles, you may want to try using this option. This option is enabled by default
+ on Darwin systems since it is known that the Darwin poll() implementation has
+ odd issues.
diff --git a/configure b/configure
index e855ed1b2..6ca9fdedf 100755
--- a/configure
+++ b/configure
@@ -1,5 +1,5 @@
#! /bin/sh
-# From configure.ac Revision: 132644 .
+# From configure.ac Revision: 132706 .
# Guess values for system-dependent variables and create Makefiles.
# Generated by GNU Autoconf 2.61 for asterisk 1.6.
#
@@ -1571,6 +1571,7 @@ Optional Features:
--enable-FEATURE[=ARG] include FEATURE [ARG=yes]
--enable-dev-mode Turn on developer mode
--disable-largefile omit support for large files
+ --enable-internal-poll Use Asterisk's poll implementation
Optional Packages:
--with-PACKAGE[=ARG] use PACKAGE [ARG=yes]
@@ -15561,6 +15562,20 @@ fi
+# Check whether --enable-internal-poll was given.
+if test "${enable_internal_poll+set}" = set; then
+ enableval=$enable_internal_poll; case "${enableval}" in
+ y|ye|yes) HAS_POLL="";;
+ n|no) HAS_POLL="${HAS_POLL}" ;;
+ *) { { echo "$as_me:$LINENO: error: bad value ${enableval} for --enable-internal-poll" >&5
+echo "$as_me: error: bad value ${enableval} for --enable-internal-poll" >&2;}
+ { (exit 1); exit 1; }; } ;;
+ esac
+fi
+
+
+
+
# https support (in main/http.c) uses funopen on BSD systems,
# fopencookie on linux
diff --git a/configure.ac b/configure.ac
index e0f2e9d09..886677f8d 100644
--- a/configure.ac
+++ b/configure.ac
@@ -326,8 +326,18 @@ AC_CHECK_HEADER([sys/poll.h],
[HAS_POLL=1]
AC_DEFINE([HAVE_SYS_POLL_H], 1, [Define to 1 if your system has working sys/poll.h]),
)
+
+AC_ARG_ENABLE(internal-poll,
+ [ --enable-internal-poll Use Asterisk's poll implementation],
+ [case "${enableval}" in
+ y|ye|yes) HAS_POLL="";;
+ n|no) HAS_POLL="${HAS_POLL}" ;;
+ *) AC_MSG_ERROR(bad value ${enableval} for --enable-internal-poll) ;;
+ esac])
AC_SUBST(HAS_POLL)
+
+
# https support (in main/http.c) uses funopen on BSD systems,
# fopencookie on linux
AC_CHECK_FUNCS([funopen fopencookie])
diff --git a/main/Makefile b/main/Makefile
index 25e967d98..b3a53a39f 100644
--- a/main/Makefile
+++ b/main/Makefile
@@ -42,8 +42,13 @@ OBJS+=say.o
AST_LIBS += $(SSL_LIB)
AST_LIBS += $(BKTR_LIB)
+
ifeq ($(POLL_AVAILABLE),)
OBJS+=poll.o
+else
+ ifneq ($(findstring darwin,$(OSARCH)),)
+ OBJS+=poll.o
+ endif
endif
ifneq ($(findstring $(OSARCH), linux-gnu uclinux linux-uclibc linux-gnueabi ),)