aboutsummaryrefslogtreecommitdiff
path: root/src/core/ngx_modules.c
diff options
context:
space:
mode:
authorIgor Sysoev <igor@sysoev.ru>2003-05-19 16:39:14 +0000
committerIgor Sysoev <igor@sysoev.ru>2003-05-19 16:39:14 +0000
commita98301160de4c12f455cca8f78509f2e04626c0b (patch)
treecdf14046298d40ca8398925603fb4011360b187a /src/core/ngx_modules.c
parentbb4ec5c1721defd7b10f83ace51bddb71726dd1a (diff)
downloadnginx-a98301160de4c12f455cca8f78509f2e04626c0b.tar.gz
nginx-a98301160de4c12f455cca8f78509f2e04626c0b.zip
nginx-0.0.1-2003-05-19-20:39:14 import
Diffstat (limited to 'src/core/ngx_modules.c')
-rw-r--r--src/core/ngx_modules.c10
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,