VirtualBox

source: vbox/trunk/src/libs/openssl-3.0.3/Configurations/platform/AIX.pm@ 97122

最後變更 在這個檔案從97122是 95219,由 vboxsync 提交於 3 年 前

libs/openssl: Switched to v3.0.3, bugref:10128

檔案大小: 833 位元組
 
1package platform::AIX;
2
3use strict;
4use warnings;
5use Carp;
6
7use vars qw(@ISA);
8
9require platform::Unix;
10@ISA = qw(platform::Unix);
11
12# Assume someone set @INC right before loading this module
13use configdata;
14
15sub dsoext { '.so' }
16sub shlibextsimple { '.a' }
17
18# In shared mode, the default static library names clashes with the final
19# "simple" full shared library name, so we add '_a' to the basename of the
20# static libraries in that case.
21sub staticname {
22 # Non-installed libraries are *always* static, and their names remain
23 # the same, except for the mandatory extension
24 my $in_libname = platform::BASE->staticname($_[1]);
25 return $in_libname
26 if $unified_info{attributes}->{libraries}->{$_[1]}->{noinst};
27
28 return platform::BASE->staticname($_[1]) . ($disabled{shared} ? '' : '_a');
29}
注意: 瀏覽 TracBrowser 來幫助您使用儲存庫瀏覽器

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette