summaryrefslogtreecommitdiffhomepage
path: root/auto/os
diff options
context:
space:
mode:
authorIgor Sysoev <igor@sysoev.ru>2005-02-16 13:40:36 +0000
committerIgor Sysoev <igor@sysoev.ru>2005-02-16 13:40:36 +0000
commit1ebfead9da0596e8e84231f7ea8ba25a650a4d1e (patch)
tree15e18d104477e04ffb5fcb31b3fb43f20dcfe996 /auto/os
parent675cc5a855cec4acaae2937cb832c424e4d3bacf (diff)
downloadnginx-release-0.1.19.tar.gz
nginx-release-0.1.19.tar.bz2
nginx-0.1.19-RELEASE importrelease-0.1.19
*) Bugfix: now, if request contains the zero, then the 404 error is returned for the local requests. *) Bugfix: nginx could not be built on NetBSD 2.0. *) Bugfix: the timeout may occur while reading of the the client request body via SSL connections.
Diffstat (limited to 'auto/os')
-rw-r--r--auto/os/conf11
-rw-r--r--auto/os/freebsd1
2 files changed, 12 insertions, 0 deletions
diff --git a/auto/os/conf b/auto/os/conf
index 71a143df7..737519938 100644
--- a/auto/os/conf
+++ b/auto/os/conf
@@ -123,4 +123,15 @@ if [ $NGX_PLATFORM != win32 ]; then
. auto/feature
fi
fi
+
+ if [ NGX_SYSTEM != "NetBSD" ]; then
+
+ # NetBSD 2.0 incompatibly defines kevent.udata as "intptr_t"
+ cat << END >> $NGX_AUTO_CONFIG_H
+
+#define NGX_KQUEUE_UDATA_T (void *)
+
+END
+
+ fi
fi
diff --git a/auto/os/freebsd b/auto/os/freebsd
index e35b933af..dfb547f3b 100644
--- a/auto/os/freebsd
+++ b/auto/os/freebsd
@@ -64,6 +64,7 @@ then
EVENT_FOUND=YES
fi
+
NGX_KQUEUE_CHECKED=YES