|
version 1.34.2.3, 2014/05/19 22:21:23
|
version 1.34.2.5, 2014/05/19 23:14:08
|
|
Line 708 ac_user_opts='
|
Line 708 ac_user_opts='
|
| enable_option_checking |
enable_option_checking |
| enable_debug |
enable_debug |
| enable_aio |
enable_aio |
| |
enable_epoll |
| enable_kqueue |
enable_kqueue |
| with_kq_events |
with_kq_events |
| enable_epoll |
|
| ' |
' |
| ac_precious_vars='build_alias |
ac_precious_vars='build_alias |
| host_alias |
host_alias |
|
Line 1349 Optional Features:
|
Line 1349 Optional Features:
|
| --enable-FEATURE[=ARG] include FEATURE [ARG=yes] |
--enable-FEATURE[=ARG] include FEATURE [ARG=yes] |
| --enable-debug Build library with debug information and additional messages |
--enable-debug Build library with debug information and additional messages |
| --enable-aio Build scheduler library with AIO operations |
--enable-aio Build scheduler library with AIO operations |
| --disable-kqueue Disable kqueue support |
|
| --enable-epoll Enable epoll support (only under Linux) |
--enable-epoll Enable epoll support (only under Linux) |
| |
--disable-kqueue Disable kqueue support |
| |
|
| Optional Packages: |
Optional Packages: |
| --with-PACKAGE[=ARG] use PACKAGE [ARG=yes] |
--with-PACKAGE[=ARG] use PACKAGE [ARG=yes] |
|
Line 4714 fi
|
Line 4714 fi
|
| { $as_echo "$as_me:$LINENO: result: $AIO" >&5 |
{ $as_echo "$as_me:$LINENO: result: $AIO" >&5 |
| $as_echo "$AIO" >&6; } |
$as_echo "$AIO" >&6; } |
| |
|
| KQSUP=yes | |
| | cat >>confdefs.h <<\_ACEOF |
| | #define NO_SUPPORT 0 |
| | _ACEOF |
| | |
| | |
| | cat >>confdefs.h <<\_ACEOF |
| | #define KQ_SUPPORT 1 |
| | _ACEOF |
| | |
| | |
| | cat >>confdefs.h <<\_ACEOF |
| | #define EP_SUPPORT 2 |
| | _ACEOF |
| | |
| | |
| | |
| | cat >>confdefs.h <<\_ACEOF |
| | #define SUP_ENABLE KQ_SUPPORT |
| | _ACEOF |
| | |
| | |
| | EPSUP=no |
| | { $as_echo "$as_me:$LINENO: checking epoll support" >&5 |
| | $as_echo_n "checking epoll support... " >&6; } |
| | # Check whether --enable-epoll was given. |
| | if test "${enable_epoll+set}" = set; then |
| | enableval=$enable_epoll; EPSUP=$enableval |
| | case "$enableval" in |
| | yes) |
| | |
| | cat >>confdefs.h <<\_ACEOF |
| | #define SUP_ENABLE EP_SUPPORT |
| | _ACEOF |
| | |
| | KQSUP=no |
| | ;; |
| | *) |
| | KQSUP=yes |
| | ;; |
| | esac |
| | else |
| | KQSUP=yes |
| | fi |
| | |
| | { $as_echo "$as_me:$LINENO: result: $EPSUP" >&5 |
| | $as_echo "$EPSUP" >&6; } |
| | |
| { $as_echo "$as_me:$LINENO: checking kqueue support" >&5 |
{ $as_echo "$as_me:$LINENO: checking kqueue support" >&5 |
| $as_echo_n "checking kqueue support... " >&6; } |
$as_echo_n "checking kqueue support... " >&6; } |
| # Check whether --enable-kqueue was given. |
# Check whether --enable-kqueue was given. |
|
Line 4724 if test "${enable_kqueue+set}" = set; then
|
Line 4771 if test "${enable_kqueue+set}" = set; then
|
| no) |
no) |
| |
|
| cat >>confdefs.h <<\_ACEOF |
cat >>confdefs.h <<\_ACEOF |
| #define KQ_DISABLE /**/ | #define SUP_ENABLE NO_SUPPORT |
| _ACEOF |
_ACEOF |
| |
|
| ;; |
;; |
|
Line 4754 _ACEOF
|
Line 4801 _ACEOF
|
| |
|
| { $as_echo "$as_me:$LINENO: result: $KQ_EVENTS" >&5 |
{ $as_echo "$as_me:$LINENO: result: $KQ_EVENTS" >&5 |
| $as_echo "$KQ_EVENTS" >&6; } |
$as_echo "$KQ_EVENTS" >&6; } |
| |
|
| EPSUP=no |
|
| { $as_echo "$as_me:$LINENO: checking epoll support" >&5 |
|
| $as_echo_n "checking epoll support... " >&6; } |
|
| # Check whether --enable-epoll was given. |
|
| if test "${enable_epoll+set}" = set; then |
|
| enableval=$enable_epoll; EPSUP=$enableval |
|
| case "$enableval" in |
|
| no) |
|
| |
|
| cat >>confdefs.h <<\_ACEOF |
|
| #define EP_ENABLE /**/ |
|
| _ACEOF |
|
| |
|
| ;; |
|
| *) |
|
| ;; |
|
| esac |
|
| fi |
|
| |
|
| { $as_echo "$as_me:$LINENO: result: $EPSUP" >&5 |
|
| $as_echo "$EPSUP" >&6; } |
|
| |
|
| ac_config_files="$ac_config_files Makefile inc/Makefile lib/Makefile src/Makefile" |
ac_config_files="$ac_config_files Makefile inc/Makefile lib/Makefile src/Makefile" |
| |
|