comparison auto/os/freebsd @ 467:bbd6b0b4a2b1 release-0.1.8

nginx-0.1.8-RELEASE import *) 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 <igor@sysoev.ru>
date Sat, 20 Nov 2004 19:52:20 +0000
parents 295d97d70c69
children 2ff194b74f1e
comparison
equal deleted inserted replaced
466:ee6d66462bff 467:bbd6b0b4a2b1
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