]> git.ipfire.org Git - thirdparty/openssl.git/blame - build.info
Add a perl module that deals with ordinals files
[thirdparty/openssl.git] / build.info
CommitLineData
d4453024
RL
1{-
2 our $sover = $config{shlib_version_number};
3 our $sover_filename = $sover;
4 $sover_filename =~ s|\.|_|g
5 if $config{target} =~ /^mingw/ || $config{target} =~ /^VC-/;
6 $sover_filename =
7 sprintf "%02d%02d", split m|\.|, $config{shlib_version_number}
8 if $config{target} =~ /^vms/;
9 "";
10-}
777a2882 11LIBS=libcrypto libssl
0483f586
RL
12INCLUDE[libcrypto]=. crypto/include include
13INCLUDE[libssl]=. include
777a2882 14DEPEND[libssl]=libcrypto
fcf80c46 15
27ffb86c
RL
16# Empty DEPEND "indices" means the dependencies are expected to be built
17# unconditionally before anything else.
18DEPEND[]=include/openssl/opensslconf.h crypto/include/internal/bn_conf.h \
19 crypto/include/internal/dso_conf.h
20DEPEND[include/openssl/opensslconf.h]=configdata.pm
21GENERATE[include/openssl/opensslconf.h]=include/openssl/opensslconf.h.in
22DEPEND[crypto/include/internal/bn_conf.h]=configdata.pm
23GENERATE[crypto/include/internal/bn_conf.h]=crypto/include/internal/bn_conf.h.in
24DEPEND[crypto/include/internal/dso_conf.h]=configdata.pm
25GENERATE[crypto/include/internal/dso_conf.h]=crypto/include/internal/dso_conf.h.in
26
7a061312 27IF[{- defined $target{shared_defflag} -}]
ef2dfc99
RL
28 SHARED_SOURCE[libcrypto]=libcrypto.ld
29 SHARED_SOURCE[libssl]=libssl.ld
7a061312 30
ef2dfc99
RL
31 GENERATE[libcrypto.ld]=util/libcrypto.num crypto
32 GENERATE[libssl.ld]=util/libssl.num ssl
7a061312
RL
33ENDIF
34
35IF[{- $config{target} =~ /^(?:Cygwin|mingw|VC-)/ -}]
36 GENERATE[libcrypto.rc]=util/mkrc.pl libcrypto
37 GENERATE[libssl.rc]=util/mkrc.pl libssl
38
39 SHARED_SOURCE[libcrypto]=libcrypto.rc
40 SHARED_SOURCE[libssl]=libssl.rc
41ENDIF
27ffb86c 42
fcf80c46 43IF[{- $config{target} =~ /^Cygwin/ -}]
d4453024
RL
44 SHARED_NAME[libcrypto]=cygcrypto-{- $sover_filename -}
45 SHARED_NAME[libssl]=cygssl-{- $sover_filename -}
fcf80c46 46ELSIF[{- $config{target} =~ /^mingw/ -}]
d4453024
RL
47 SHARED_NAME[libcrypto]=libcrypto-{- $sover_filename -}{- $config{target} eq "mingw64" ? "-x64" : "" -}
48 SHARED_NAME[libssl]=libssl-{- $sover_filename -}{- $config{target} eq "mingw64" ? "-x64" : "" -}
08479bbb 49ELSIF[{- $config{target} =~ /^VC-/ -}]
d4453024
RL
50 SHARED_NAME[libcrypto]=libcrypto-{- $sover_filename -}{- $target{multilib} -}
51 SHARED_NAME[libssl]=libssl-{- $sover_filename -}{- $target{multilib} -}
fcf80c46 52ENDIF
e84193e4
RL
53
54# VMS has a cultural standard where all libraries are prefixed.
55# For OpenSSL, the choice is 'ossl$' (this prefix was claimed in a
56# conversation with VSI, Tuesday January 26 2016)
8842005e
RL
57# Also, it seems it's usual to have the pointer size the libraries
58# were built for as part of the name.
e84193e4 59IF[{- $config{target} =~ /^vms/ -}]
8842005e
RL
60 RENAME[libcrypto]=ossl$libcrypto{- $target{pointer_size} -}
61 RENAME[libssl]=ossl$libssl{- $target{pointer_size} -}
d4453024
RL
62 SHARED_NAME[libcrypto]=ossl$libcrypto{- $sover_filename -}_shr{- $target{pointer_size} -}
63 SHARED_NAME[libssl]=ossl$libssl{- $sover_filename -}_shr{- $target{pointer_size} -}
e84193e4 64ENDIF