]> git.ipfire.org Git - thirdparty/openssl.git/blame - build.info
Look up availability of getentropy() at runtime.
[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
RL
27IF[{- defined $target{shared_defflag} -}]
28 IF[{- $config{target} =~ /^mingw/ -}]
29 GENERATE[libcrypto.def]=util/mkdef.pl crypto 32
30 DEPEND[libcrypto.def]=util/libcrypto.num
31 GENERATE[libssl.def]=util/mkdef.pl ssl 32
32 DEPEND[libssl.def]=util/libssl.num
33
34 SHARED_SOURCE[libcrypto]=libcrypto.def
35 SHARED_SOURCE[libssl]=libssl.def
36 ELSE
37 GENERATE[libcrypto.map]=util/mkdef.pl crypto linux
38 DEPEND[libcrypto.map]=util/libcrypto.num
39 GENERATE[libssl.map]=util/mkdef.pl ssl linux
40 DEPEND[libssl.map]=util/libssl.num
41
42 SHARED_SOURCE[libcrypto]=libcrypto.map
43 SHARED_SOURCE[libssl]=libssl.map
44 ENDIF
45ENDIF
46# VMS and VC don't have parametrised .def / .symvec generation, so they get
47# special treatment, since we know they do use these files
48IF[{- $config{target} =~ /^VC-/ -}]
49 GENERATE[libcrypto.def]=util/mkdef.pl crypto 32
50 DEPEND[libcrypto.def]=util/libcrypto.num
51 GENERATE[libssl.def]=util/mkdef.pl ssl 32
52 DEPEND[libssl.def]=util/libssl.num
53
54 SHARED_SOURCE[libcrypto]=libcrypto.def
55 SHARED_SOURCE[libssl]=libssl.def
56ELSIF[{- $config{target} =~ /^vms/ -}]
a7956a2c 57 GENERATE[libcrypto.opt]=util/mkdef.pl crypto "VMS"
7a061312 58 DEPEND[libcrypto.opt]=util/libcrypto.num
a7956a2c 59 GENERATE[libssl.opt]=util/mkdef.pl ssl "VMS"
7a061312
RL
60 DEPEND[libssl.opt]=util/libssl.num
61
62 SHARED_SOURCE[libcrypto]=libcrypto.opt
63 SHARED_SOURCE[libssl]=libssl.opt
64ENDIF
65
66IF[{- $config{target} =~ /^(?:Cygwin|mingw|VC-)/ -}]
67 GENERATE[libcrypto.rc]=util/mkrc.pl libcrypto
68 GENERATE[libssl.rc]=util/mkrc.pl libssl
69
70 SHARED_SOURCE[libcrypto]=libcrypto.rc
71 SHARED_SOURCE[libssl]=libssl.rc
72ENDIF
27ffb86c 73
fcf80c46 74IF[{- $config{target} =~ /^Cygwin/ -}]
d4453024
RL
75 SHARED_NAME[libcrypto]=cygcrypto-{- $sover_filename -}
76 SHARED_NAME[libssl]=cygssl-{- $sover_filename -}
fcf80c46 77ELSIF[{- $config{target} =~ /^mingw/ -}]
d4453024
RL
78 SHARED_NAME[libcrypto]=libcrypto-{- $sover_filename -}{- $config{target} eq "mingw64" ? "-x64" : "" -}
79 SHARED_NAME[libssl]=libssl-{- $sover_filename -}{- $config{target} eq "mingw64" ? "-x64" : "" -}
08479bbb 80ELSIF[{- $config{target} =~ /^VC-/ -}]
d4453024
RL
81 SHARED_NAME[libcrypto]=libcrypto-{- $sover_filename -}{- $target{multilib} -}
82 SHARED_NAME[libssl]=libssl-{- $sover_filename -}{- $target{multilib} -}
fcf80c46 83ENDIF
e84193e4
RL
84
85# VMS has a cultural standard where all libraries are prefixed.
86# For OpenSSL, the choice is 'ossl$' (this prefix was claimed in a
87# conversation with VSI, Tuesday January 26 2016)
8842005e
RL
88# Also, it seems it's usual to have the pointer size the libraries
89# were built for as part of the name.
e84193e4 90IF[{- $config{target} =~ /^vms/ -}]
8842005e
RL
91 RENAME[libcrypto]=ossl$libcrypto{- $target{pointer_size} -}
92 RENAME[libssl]=ossl$libssl{- $target{pointer_size} -}
d4453024
RL
93 SHARED_NAME[libcrypto]=ossl$libcrypto{- $sover_filename -}_shr{- $target{pointer_size} -}
94 SHARED_NAME[libssl]=ossl$libssl{- $sover_filename -}_shr{- $target{pointer_size} -}
e84193e4 95ENDIF