comparison auto/os/freebsd @ 16:74b1868dd3cd NGINX_0_1_8

nginx 0.1.8 *) Bugfix: in the ngx_http_autoindex_module if the long file names were in the listing. *) Feature: the "^~" modifier in the location directive. *) Feature: the proxy_max_temp_file_size directive.
author Igor Sysoev <http://sysoev.ru>
date Sat, 20 Nov 2004 00:00:00 +0300
parents 4b2dafa26fe2
children 6f8b0dc0f8dd
comparison
equal deleted inserted replaced
15:0503cb60c4e4 16:74b1868dd3cd
95 # fi 95 # fi
96 fi 96 fi
97 97
98 98
99 if [ $EVENT_AIO = YES ]; then 99 if [ $EVENT_AIO = YES ]; then
100 have=HAVE_AIO . auto/have 100 if [ \( $version -lt 500000 -a $version -ge 430000 \) \
101 EVENT_MODULES="$EVENT_MODULES $AIO_MODULE" 101 -o $version -ge 500014 ]
102 CORE_SRCS="$CORE_SRCS $AIO_SRCS" 102 then
103 else 103 have=HAVE_AIO . auto/have
104 have=HAVE_AIO . auto/nohave 104 EVENT_MODULES="$EVENT_MODULES $AIO_MODULE"
105 CORE_SRCS="$CORE_SRCS $AIO_SRCS"
106 else
107
108 cat << END
109
110 $0: error: the kqueue does not support AIO on this FreeBSD version
111
112 END
113
114 exit 1
115 fi
105 fi 116 fi