comparison auto/summary @ 457:ded1284520cc release-0.1.3

nginx-0.1.3-RELEASE import *) Feature: the ngx_http_autoindex_module and the autoindex directive. *) Feature: the proxy_set_x_url directive. *) Bugfix: proxy module may get caught in an endless loop when sendfile is not used.
author Igor Sysoev <igor@sysoev.ru>
date Mon, 25 Oct 2004 15:29:23 +0000
parents 91e0d6a8f980
children 2ff194b74f1e
comparison
equal deleted inserted replaced
456:911c05435a02 457:ded1284520cc
3 3
4 4
5 echo 5 echo
6 echo "Configuration summary" 6 echo "Configuration summary"
7 7
8
9 case $USE_THREADS in
10 rfork) echo " + using rfork()ed threads" ;;
11 pthreads) echo " + using libpthread threads library" ;;
12 libthr) echo " + using FreeBSD libthr threads library" ;;
13 libc_r) echo " + using FreeBSD libc_r threads library" ;;
14 linuxthreads) echo " + using FreeBSD LinuxThreads port library" ;;
15 NO) echo " + threads are not used" ;;
16 *) echo " + using lib$USE_THREADS threads library" ;;
17 esac
8 18
9 if [ $USE_PCRE = DISABLED ]; then 19 if [ $USE_PCRE = DISABLED ]; then
10 echo " + PCRE library is disabled" 20 echo " + PCRE library is disabled"
11 21
12 else 22 else