mirror of
https://github.com/openssl/openssl.git
synced 2024-11-21 01:15:20 +08:00
Configuration and build: Fix solaris tags
The shared_target attrribute for Solaris built with gcc wasn't right and shared libraries couldn't be properly built. Fixes #12356 Reviewed-by: Matt Caswell <matt@openssl.org> Reviewed-by: Shane Lontis <shane.lontis@oracle.com> (Merged from https://github.com/openssl/openssl/pull/12360)
This commit is contained in:
parent
1cafbb799a
commit
3a19f1a9dd
@ -225,7 +225,7 @@ my %targets = (
|
||||
"solaris-common-gcc" => {
|
||||
inherit_from => [ "solaris-common" ],
|
||||
template => 1,
|
||||
shared_target => "solaris-gcc", # The rest is on shared_info.pl
|
||||
shared_target => "solaris-gcc-shared", # The rest is on shared_info.pl
|
||||
},
|
||||
#### Solaris x86 with GNU C setups
|
||||
"solaris-x86-gcc" => {
|
||||
|
@ -107,6 +107,7 @@ my %OS_data = (
|
||||
solaris => { writer => \&writer_linux,
|
||||
sort => sorter_linux(),
|
||||
platforms => { UNIX => 1 } },
|
||||
"solaris-gcc" => 'solaris', # alias
|
||||
linux => 'solaris', # alias
|
||||
"bsd-gcc" => 'solaris', # alias
|
||||
aix => { writer => \&writer_aix,
|
||||
|
Loading…
Reference in New Issue
Block a user