Lines Matching defs:threads
30 my $usage="Usage: Configure [no-<feature> ...] [enable-<feature> ...] [-Dxxx] [-lxxx] [-Lxxx] [-fxxx] [-Kxxx] [no-hw-xxx|no-hw] [[no-]threads] [[no-]thread-pool] [[no-]default-thread-pool] [[no-]shared] [[no-]zlib|zlib-dynamic] [no-asm] [no-egd] [sctp] [386] [--prefix=DIR] [--openssldir=OPENSSLDIR] [--with-xxx[=vvv]] [--config=FILE] os/compiler[:flags]\n";
90 # [no-]threads [don't] try to create a library that is suitable for
91 # multithreaded applications (default is "threads" if we
126 # namely no-pic, no-shared and no-threads. It is
417 my $auto_threads=1; # enable threads automatically? true by default
549 "threads",
717 "threads" => [ "thread-pool" ],
882 s /^threads$/enable-threads/;
955 $auto_threads = 0 if ($1 eq "threads");
992 $auto_threads = 0 if ($1 eq "threads");
1519 disable('static', 'pic', 'threads');
1570 # If threads aren't disabled, check how possible they are
1571 unless ($disabled{threads}) {
1575 disable("unavailable", 'threads');
1578 # The user chose to enable threads explicitly, let's see
1581 # If the user asked for "threads" and we don't have internal
1615 # If threads still aren't disabled, add a C macro to ensure the source
1617 unless($disabled{threads}) {
1934 if (!grep { $what eq $_ } ( 'buildtest-c++', 'fips', 'threads', 'shared',
3025 print <<"EOF" if ($disabled{threads} eq "unavailable");
3111 # of $disabled{threads}. Can be used as follows:
3113 # cflags => combine("-Wall", threads("-pthread"))
3115 sub threads {
3117 return sub { add($disabled{threads} ? () : @flags)->(); }