Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nginx/nginx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/auto
diff options
context:
space:
mode:
authorIgor Sysoev <igor@sysoev.ru>2004-06-11 20:58:33 +0400
committerIgor Sysoev <igor@sysoev.ru>2004-06-11 20:58:33 +0400
commitf07f63ae46345eb2aa8a433b0bf48947d6cff95e (patch)
treeac3c2327d21b48f4f2ff61b7466ce1dd9f956aab /auto
parentd962b61c065999ec5dcb68b182ac597db7c597df (diff)
nginx-0.0.5-2004-06-11-20:58:33 import
Diffstat (limited to 'auto')
-rw-r--r--auto/os/linux4
1 files changed, 2 insertions, 2 deletions
diff --git a/auto/os/linux b/auto/os/linux
index 6fcd7647b..c34fba1ac 100644
--- a/auto/os/linux
+++ b/auto/os/linux
@@ -15,9 +15,9 @@ version=`grep "#define LINUX_VERSION_CODE" /usr/include/linux/version.h \
| sed -e 's/^.* \(.*\)$/\1/'`
-# enable rt signals on Linux 2.4.x
+# enable rt signals on Linux 2.2.19 and onward
-if [ $version -ge 132096 -o $EVENT_RTSIG = YES ]; then
+if [ $version -ge 131609 -o $EVENT_RTSIG = YES ]; then
echo " + using rt signals"
have=HAVE_RTSIG . auto/have
EVENT_MODULES="$EVENT_MODULES $RTSIG_MODULE"