comparison src/os/unix/ngx_freebsd_config.h @ 469:2ff194b74f1e release-0.1.9

nginx-0.1.9-RELEASE import *) Bugfix: the proxied request was sent without arguments if the request contains "//", "/./", "/../" or "%XX". *) Bugfix: the large compressed responses may be transferred not completely. *) Bugfix: the files bigger than 2G was not transferred on Linux that does not support sendfile64(). *) Bugfix: while the build configuration on Linux the --with-poll_module parameter was required; the bug had appeared in 0.1.8.
author Igor Sysoev <igor@sysoev.ru>
date Thu, 25 Nov 2004 16:17:31 +0000
parents bbd6b0b4a2b1
children c52408583801
comparison
equal deleted inserted replaced
468:1a67596d0349 469:2ff194b74f1e
58 58
59 59
60 #include <ngx_auto_config.h> 60 #include <ngx_auto_config.h>
61 61
62 62
63 #if (HAVE_POLL) 63 #if (NGX_HAVE_POLL)
64 #include <poll.h> 64 #include <poll.h>
65 #endif 65 #endif
66 66
67 67
68 #if (HAVE_AIO) 68 #if (NGX_HAVE_AIO)
69 #include <aio.h> 69 #include <aio.h>
70 #endif 70 #endif
71 71
72 72
73 #if (HAVE_KQUEUE) 73 #if (NGX_HAVE_KQUEUE)
74 #include <sys/event.h> 74 #include <sys/event.h>
75 #endif 75 #endif
76 76
77 77
78 #if defined SO_ACCEPTFILTER && !defined HAVE_DEFERRED_ACCEPT 78 #if defined SO_ACCEPTFILTER && !defined NGX_HAVE_DEFERRED_ACCEPT
79 #define HAVE_DEFERRED_ACCEPT 1 79 #define NGX_HAVE_DEFERRED_ACCEPT 1
80 #endif 80 #endif
81 81
82 82
83 #if (__FreeBSD_version < 430000 || __FreeBSD_version < 500012) 83 #if (__FreeBSD_version < 430000 || __FreeBSD_version < 500012)
84 84
89 #ifndef IOV_MAX 89 #ifndef IOV_MAX
90 #define IOV_MAX 1024 90 #define IOV_MAX 1024
91 #endif 91 #endif
92 92
93 93
94 #ifndef HAVE_INHERITED_NONBLOCK 94 #ifndef NGX_HAVE_INHERITED_NONBLOCK
95 #define HAVE_INHERITED_NONBLOCK 1 95 #define NGX_HAVE_INHERITED_NONBLOCK 1
96 #endif 96 #endif
97 97
98 98
99 #define ngx_setproctitle setproctitle 99 #define ngx_setproctitle setproctitle
100 100