comparison src/os/unix/ngx_linux_config.h @ 467:bbd6b0b4a2b1 release-0.1.8

nginx-0.1.8-RELEASE import *) 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 <igor@sysoev.ru>
date Sat, 20 Nov 2004 19:52:20 +0000
parents a88a3e4e158f
children 2ff194b74f1e
comparison
equal deleted inserted replaced
466:ee6d66462bff 467:bbd6b0b4a2b1
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