comparison src/os/unix/ngx_freebsd_config.h @ 18:6f8b0dc0f8dd NGINX_0_1_9

nginx 0.1.9 *) 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; bug appeared in 0.1.8.
author Igor Sysoev <http://sysoev.ru>
date Thu, 25 Nov 2004 00:00:00 +0300
parents 74b1868dd3cd
children 7ca9bdc82b3f
comparison
equal deleted inserted replaced
17:9acb68bb0698 18:6f8b0dc0f8dd
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