comparison src/os/unix/ngx_linux_config.h @ 16:74b1868dd3cd NGINX_0_1_8

nginx 0.1.8 *) Bugfix: in the ngx_http_autoindex_module if the long file names were in the listing. *) Feature: the "^~" modifier in the location directive. *) Feature: the proxy_max_temp_file_size directive.
author Igor Sysoev <http://sysoev.ru>
date Sat, 20 Nov 2004 00:00:00 +0300
parents 46833bd150cb
children 6f8b0dc0f8dd
comparison
equal deleted inserted replaced
15:0503cb60c4e4 16:74b1868dd3cd
61 #else 61 #else
62 extern ssize_t sendfile(int s, int fd, int32_t *offset, size_t size); 62 extern ssize_t sendfile(int s, int fd, int32_t *offset, size_t size);
63 #endif 63 #endif
64 64
65 65
66
67 #ifndef HAVE_SELECT
68 #define HAVE_SELECT 1
69 #endif
70
71
72 #ifndef HAVE_POLL
73 #define HAVE_POLL 1
74 #endif
75 #if (HAVE_POLL) 66 #if (HAVE_POLL)
76 #include <poll.h> 67 #include <poll.h>
77 #endif 68 #endif
69
78 70
79 #if (HAVE_EPOLL) 71 #if (HAVE_EPOLL)
80 #include <sys/epoll.h> 72 #include <sys/epoll.h>
81 #endif /* HAVE_EPOLL */ 73 #endif /* HAVE_EPOLL */
82 74