comparison src/core/ngx_modules.c @ 93:738fe44c70d5

nginx-0.0.1-2003-05-21-17:28:21 import
author Igor Sysoev <igor@sysoev.ru>
date Wed, 21 May 2003 13:28:21 +0000
parents 19cc647ecd91
children a23d010f356d
comparison
equal deleted inserted replaced
92:19cc647ecd91 93:738fe44c70d5
14 #if (HAVE_KQUEUE) 14 #if (HAVE_KQUEUE)
15 extern ngx_module_t ngx_kqueue_module; 15 extern ngx_module_t ngx_kqueue_module;
16 #endif 16 #endif
17 #if (HAVE_DEVPOLL) 17 #if (HAVE_DEVPOLL)
18 extern ngx_module_t ngx_devpoll_module; 18 extern ngx_module_t ngx_devpoll_module;
19 #endif
20 #if (HAVE_AIO)
21 extern ngx_module_t ngx_aio_module;
19 #endif 22 #endif
20 23
21 24
22 extern ngx_module_t ngx_http_module; 25 extern ngx_module_t ngx_http_module;
23 extern ngx_module_t ngx_http_core_module; 26 extern ngx_module_t ngx_http_core_module;
45 &ngx_kqueue_module, 48 &ngx_kqueue_module,
46 #endif 49 #endif
47 #if (HAVE_DEVPOLL) 50 #if (HAVE_DEVPOLL)
48 &ngx_devpoll_module, 51 &ngx_devpoll_module,
49 #endif 52 #endif
53 #if (HAVE_AIO)
54 &ngx_aio_module,
55 #endif
50 56
51 /* http */ 57 /* http */
52 58
53 &ngx_http_module, 59 &ngx_http_module,
54 60