From a98301160de4c12f455cca8f78509f2e04626c0b Mon Sep 17 00:00:00 2001 From: Igor Sysoev Date: Mon, 19 May 2003 16:39:14 +0000 Subject: nginx-0.0.1-2003-05-19-20:39:14 import --- src/core/ngx_modules.c | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'src/core/ngx_modules.c') diff --git a/src/core/ngx_modules.c b/src/core/ngx_modules.c index 273c5550e..db6cf7351 100644 --- a/src/core/ngx_modules.c +++ b/src/core/ngx_modules.c @@ -7,6 +7,11 @@ extern ngx_module_t ngx_events_module; extern ngx_module_t ngx_event_module; +extern ngx_module_t ngx_select_module; +#if (HAVE_KQUEUE) +extern ngx_module_t ngx_kqueue_module; +#endif + extern ngx_module_t ngx_http_module; extern ngx_module_t ngx_http_core_module; @@ -26,6 +31,11 @@ ngx_module_t *ngx_modules[] = { &ngx_events_module, &ngx_event_module, + &ngx_select_module, +#if (HAVE_KQUEUE) + &ngx_kqueue_module, +#endif + /* http */ &ngx_http_module, -- cgit v1.2.3