comparison src/os/unix/ngx_solaris_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 56baf312c1b5
children d4da38525468
comparison
equal deleted inserted replaced
517:15b5cddc5190 518:86dad910eeb6
60 #if (NGX_HAVE_POLL) 60 #if (NGX_HAVE_POLL)
61 #include <poll.h> 61 #include <poll.h>
62 #endif 62 #endif
63 63
64 64
65 #if (NGX_HAVE_SENDFILE)
66 #include <sys/sendfile.h>
67 #endif
68
69
70 #if (NGX_HAVE_AIO)
71 #include <aio.h>
72 #endif
73
74
75 #if (NGX_HAVE_DEVPOLL) 65 #if (NGX_HAVE_DEVPOLL)
76 #include <sys/ioctl.h> 66 #include <sys/ioctl.h>
77 #include <sys/devpoll.h> 67 #include <sys/devpoll.h>
78 #endif 68 #endif
79 69
80 70
81 #if (NGX_HAVE_EVENTPORT) 71 #if (NGX_HAVE_EVENTPORT)
82 #include <port.h> 72 #include <port.h>
73 #endif
74
75
76 #if (NGX_HAVE_SENDFILE)
77 #include <sys/sendfile.h>
83 #endif 78 #endif
84 79
85 80
86 #define NGX_LISTEN_BACKLOG 511 81 #define NGX_LISTEN_BACKLOG 511
87 82