Lines Matching defs:shared

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";
97 # [no-]shared [don't] try to create shared libraries when supported.
99 # If disabled, it also disables shared and dynamic-engine.
103 # zlib-dynamic Like "zlib", but the zlib library is expected to be a shared
126 # namely no-pic, no-shared and no-threads. It is
529 "shared",
634 "bulk" => [ "shared", "dso",
677 # Without shared libraries, dynamic engines aren't possible.
681 # which cannot be guaranteed if shared libraries aren't present.
682 # (note that even with shared libraries, both the app and dynamic engines
684 "shared" => [ "dynamic-engine", "uplink" ],
686 # Other modules don't necessarily have to link with libcrypto, so shared
689 # Without position independent code, there can be no shared libraries
691 "pic" => [ "shared", "module" ],
697 # no-autoalginit is only useful when building non-shared
698 "autoalginit" => [ "shared", "apps", "fips" ],
880 s /^-?-?shared$/enable-shared/;
1265 && !$disabled{shared}
1267 die "***** Cannot simultaneously use -rpath, shared libraries, and\n",
1629 if (!$disabled{shared} || !$disabled{"dynamic-engine"});
1630 disable('no-shared-target', 'pic');
1867 # Get the extra flags used when building shared libraries and modules. We
1870 # Make the flags to build DSOs the same as for shared libraries unless they
1877 catfile(dirname($0), "Configurations", "shared-info.pl");
1934 if (!grep { $what eq $_ } ( 'buildtest-c++', 'fips', 'threads', 'shared',
2386 # Check that we haven't defined any library as both shared and
2393 die "these libraries are both explicitly static and shared:\n ",
2477 die "unrecognised source file type for shared library: $s\n";
2775 # that are supposed to end up in shared libraries and DSOs.
2777 # the same name to be used for the static and the shared variants of a
2791 # libraries use the 'sources' structure exclusively, while shared
2810 && $disabled{shared});
3034 The options 'shared', 'pic' and 'dynamic-engine' aren't supported on this
3036 'shared' and 'dynamic-engine'. If you know how to implement shared libraries
3120 sub shared {
3122 return sub { add($disabled{shared} ? () : @flags)->(); }