comparison auto/summary @ 6017:83d54192e97b

Configure: removed obsolete threads bits.
author Ruslan Ermilov <ru@nginx.com>
date Fri, 13 Mar 2015 19:08:27 +0300
parents d620f497c50f
children 466bd63b63d1
comparison
equal deleted inserted replaced
6016:457ec43dd8d5 6017:83d54192e97b
1 1
2 # Copyright (C) Igor Sysoev 2 # Copyright (C) Igor Sysoev
3 # Copyright (C) Nginx, Inc. 3 # Copyright (C) Nginx, Inc.
4 4
5 5
6 ### STUB
7
8 if [ $USE_THREADS != NO ]; then
9
10 cat << END
11
12 $0: error: the threads support is broken now.
13
14 END
15 exit 1
16 fi
17
18 ###
19
20
21 echo 6 echo
22 echo "Configuration summary" 7 echo "Configuration summary"
23 8
24
25 #case $USE_THREADS in
26 # rfork) echo " + using rfork()ed threads" ;;
27 # pthreads) echo " + using libpthread threads library" ;;
28 # libthr) echo " + using FreeBSD libthr threads library" ;;
29 # libc_r) echo " + using FreeBSD libc_r threads library" ;;
30 # linuxthreads) echo " + using FreeBSD LinuxThreads port library" ;;
31 # NO) echo " + threads are not used" ;;
32 # *) echo " + using lib$USE_THREADS threads library" ;;
33 #esac
34 9
35 if [ $USE_PCRE = DISABLED ]; then 10 if [ $USE_PCRE = DISABLED ]; then
36 echo " + PCRE library is disabled" 11 echo " + PCRE library is disabled"
37 12
38 else 13 else