diff options
Diffstat (limited to 'src/core/ngx_modules.c')
-rw-r--r-- | src/core/ngx_modules.c | 10 |
1 files changed, 10 insertions, 0 deletions
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, |