comparison src/os/unix/ngx_freebsd_config.h @ 518:86dad910eeb6 NGINX_0_8_11

nginx 0.8.11 *) Change: directive "gzip_disable msie6" enables gzipping for MSIE 6.0 SV1. *) Feature: file AIO support on FreeBSD and Linux. *) Feature: the "directio_alignment" directive.
author Igor Sysoev <http://sysoev.ru>
date Fri, 28 Aug 2009 00:00:00 +0400
parents 6866b490272e
children d4da38525468
comparison
equal deleted inserted replaced
517:15b5cddc5190 518:86dad910eeb6
71 #if (NGX_HAVE_POLL) 71 #if (NGX_HAVE_POLL)
72 #include <poll.h> 72 #include <poll.h>
73 #endif 73 #endif
74 74
75 75
76 #if (NGX_HAVE_AIO) 76 #if (NGX_HAVE_KQUEUE)
77 #include <aio.h> 77 #include <sys/event.h>
78 #endif 78 #endif
79 79
80 80
81 #if (NGX_HAVE_KQUEUE) 81 #if (NGX_HAVE_FILE_AIO || NGX_HAVE_AIO)
82 #include <sys/event.h> 82 #include <aio.h>
83 typedef struct aiocb ngx_aiocb_t;
83 #endif 84 #endif
84 85
85 86
86 #define NGX_LISTEN_BACKLOG -1 87 #define NGX_LISTEN_BACKLOG -1
87 88