diff options
Diffstat (limited to 'src/core/ngx_modules.c')
-rw-r--r-- | src/core/ngx_modules.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/core/ngx_modules.c b/src/core/ngx_modules.c index 5e5f5a8bd..cf5458c5a 100644 --- a/src/core/ngx_modules.c +++ b/src/core/ngx_modules.c @@ -17,6 +17,9 @@ extern ngx_module_t ngx_kqueue_module; #if (HAVE_DEVPOLL) extern ngx_module_t ngx_devpoll_module; #endif +#if (HAVE_AIO) +extern ngx_module_t ngx_aio_module; +#endif extern ngx_module_t ngx_http_module; @@ -47,6 +50,9 @@ ngx_module_t *ngx_modules[] = { #if (HAVE_DEVPOLL) &ngx_devpoll_module, #endif +#if (HAVE_AIO) + &ngx_aio_module, +#endif /* http */ |