comparison auto/os/freebsd @ 376:d0451e402e27

nginx-0.0.7-2004-07-05-10:55:54 import
author Igor Sysoev <igor@sysoev.ru>
date Mon, 05 Jul 2004 06:55:54 +0000
parents 0fb6c53fb135
children 42d11f017717
comparison
equal deleted inserted replaced
375:744ccb59062d 376:d0451e402e27
52 52
53 if [ \( $version -lt 500000 -a $version -ge 430000 \) \ 53 if [ \( $version -lt 500000 -a $version -ge 430000 \) \
54 -o $version -ge 500018 ] 54 -o $version -ge 500018 ]
55 then 55 then
56 echo " + using kqueue's NOTE_LOWAT" 56 echo " + using kqueue's NOTE_LOWAT"
57 have=HAVE_LOWAT_EVENT . auto/have
58 fi
57 59
58 have=HAVE_LOWAT_EVENT . auto/have 60
61 if [ $USE_THREADS = "rfork" ]; then
62
63 echo " + using rfork()"
64
65 # kqueue's EVFILT_SIGNAL is safe
66
67 if [ $version -gt 460101 ]; then
68 echo " + kqueue's EVFILT_SIGNAL is safe"
69 have=HAVE_SAFE_EVFILT_SIGNAL . auto/have
70 else
71 echo "$0: error: the kqueue's EVFILT_SIGNAL is unsafe on this"
72 echo "FreeBSD version, so --with-threads=rfork could not be used"
73 echo
74
75 exit 1
76 fi
59 fi 77 fi
60 78
61 79
62 if [ $EVENT_AIO = YES ]; then 80 if [ $EVENT_AIO = YES ]; then
63 have=HAVE_AIO . auto/have 81 have=HAVE_AIO . auto/have