comparison auto/summary @ 6:80ba094c6b3e NGINX_0_1_3

nginx 0.1.3 *) 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 <http://sysoev.ru>
date Mon, 25 Oct 2004 00:00:00 +0400
parents f0b350454894
children 6f8b0dc0f8dd
comparison
equal deleted inserted replaced
5:985c56ebe724 6:80ba094c6b3e
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