14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
if {[lsearch -exact $buildflags "threaded"] == -1} {
set isthreaded 0
} else {
set isthreaded 1
}
}
# Static builds don't come with threads.
if {[lsearch -exact $buildflags "static"] != -1} {
set isthreaded 0
}
if {!$isthreaded} {
exit 0
}
|
|
|
|
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
if {[lsearch -exact $buildflags "threaded"] == -1} {
set isthreaded 0
} else {
set isthreaded 1
}
}
# Minimal builds don't come with threads.
if {[lsearch -exact $buildflags "min"] != -1} {
set isthreaded 0
}
if {!$isthreaded} {
exit 0
}
|