comparison auto/os/linux @ 6126:adba26ff70b5

Removed the obsolete rtsig module.
author Ruslan Ermilov <ru@nginx.com>
date Thu, 23 Apr 2015 14:17:40 +0300
parents 36b58ddb566d
children e393c0bf53d3
comparison
equal deleted inserted replaced
6125:4dc8e7b62216 6126:adba26ff70b5
22 | sed -n -e 's/^\([0-9][0-9]*\)\.\([0-9][0-9]*\)\.\([0-9][0-9]*\).*/ \ 22 | sed -n -e 's/^\([0-9][0-9]*\)\.\([0-9][0-9]*\)\.\([0-9][0-9]*\).*/ \
23 \1*256*256+\2*256+\3/p' \ 23 \1*256*256+\2*256+\3/p' \
24 -e 's/^\([0-9][0-9]*\)\.\([0-9][0-9]*\).*/\1*256*256+\2*256/p'`)) 24 -e 's/^\([0-9][0-9]*\)\.\([0-9][0-9]*\).*/\1*256*256+\2*256/p'`))
25 25
26 version=${version:-0} 26 version=${version:-0}
27
28
29 # enable the rt signals on Linux between 2.2.19 and 2.6.17
30
31 if [ \( $version -ge 131603 -a $version -lt 132626 \) -o $EVENT_RTSIG = YES ]
32 then
33 echo " + rt signals found"
34 have=NGX_HAVE_RTSIG . auto/have
35 EVENT_MODULES="$EVENT_MODULES $RTSIG_MODULE"
36 CORE_SRCS="$CORE_SRCS $RTSIG_SRCS"
37 EVENT_FOUND=YES
38 fi
39 27
40 28
41 # posix_fadvise64() had been implemented in 2.5.60 29 # posix_fadvise64() had been implemented in 2.5.60
42 30
43 if [ $version -lt 132412 ]; then 31 if [ $version -lt 132412 ]; then