Lines Matching defs:shared

30 my $usage="Usage: Configure [no-<cipher> ...] [enable-<cipher> ...] [-Dxxx] [-lxxx] [-Lxxx] [-fxxx] [-Kxxx] [no-hw-xxx|no-hw] [[no-]threads] [[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";
84 # [no-]shared [don't] try to create shared libraries when supported.
86 # If disabled, it also disables shared and dynamic-engine.
90 # zlib-dynamic Like "zlib", but the zlib library is expected to be a shared
112 # namely no-pic, no-shared and no-threads. It is
480 "shared",
565 "bulk" => [ "shared", "dso",
602 # Without shared libraries, dynamic engines aren't possible.
606 # which cannot be guaranteed if shared libraries aren't present.
607 # (note that even with shared libraries, both the app and dynamic engines
609 "shared" => [ "dynamic-engine", "uplink" ],
611 # Other modules don't necessarily have to link with libcrypto, so shared
614 # Without position independent code, there can be no shared libraries
616 "pic" => [ "shared", "module" ],
622 # no-autoalginit is only useful when building non-shared
623 "autoalginit" => [ "shared", "apps", "fips" ],
795 s /^-?-?shared$/enable-shared/;
1139 && !$disabled{shared}
1141 die "***** Cannot simultaneously use -rpath, shared libraries, and\n",
1490 if (!$disabled{shared} || !$disabled{"dynamic-engine"});
1491 disable('no-shared-target', 'pic');
1735 # Get the extra flags used when building shared libraries and modules. We
1738 # Make the flags to build DSOs the same as for shared libraries unless they
1745 catfile(dirname($0), "Configurations", "shared-info.pl");
1802 if (!grep { $what eq $_ } ( 'buildtest-c++', 'fips', 'threads', 'shared',
2254 # Check that we haven't defined any library as both shared and
2261 die "these libraries are both explicitly static and shared:\n ",
2345 die "unrecognised source file type for shared library: $s\n";
2611 # that are supposed to end up in shared libraries and DSOs.
2613 # the same name to be used for the static and the shared variants of a
2627 # libraries use the 'sources' structure exclusively, while shared
2646 && $disabled{shared});
2870 The options 'shared', 'pic' and 'dynamic-engine' aren't supported on this
2872 'shared' and 'dynamic-engine'. If you know how to implement shared libraries
2956 sub shared {
2958 return sub { add($disabled{shared} ? () : @flags)->(); }