diff options
Diffstat (limited to '')
| -rw-r--r-- | auto/options | 16 |
1 files changed, 10 insertions, 6 deletions
diff --git a/auto/options b/auto/options index 91b9b1b7a..61e446ea0 100644 --- a/auto/options +++ b/auto/options @@ -8,8 +8,11 @@ TEST_BUILD_DEVPOLL=NO TEST_BUILD_EPOLL=NO TEST_BUILD_SIGIO=NO -SELECT=YES -POLL=YES +EVENT_FOUND=NO + +EVENT_SELECT=NO +EVENT_POLL=NO +EVENT_AIO=NO HTTP_REWRITE=YES HTTP_GZIP=YES @@ -18,11 +21,11 @@ HTTP_PROXY=YES PCRE=NO -USE_MD5=YES +USE_MD5=NO MD5=NO MD5_LIB=NO -USE_ZLIB=YES +USE_ZLIB=NO ZLIB=NO ZLIB_LIB=NO @@ -41,8 +44,9 @@ do --builddir=*) OBJS="$value" ;; - --without-select_module) SELECT=NO ;; - --without-poll_module) POLL=NO ;; + --with-select_module) EVENT_SELECT=YES ;; + --with-poll_module) EVENT_POLL=YES ;; + --with-aio_module) EVENT_AIO=YES ;; --without-http_rewrite_module) HTTP_REWRITE=NO ;; --without-http_ssi_module) HTTP_SSI=NO ;; |
