Richard Levitte | 777a288 | 2016-01-29 23:33:10 +0100 | [diff] [blame] | 1 | LIBS=libcrypto libssl |
| 2 | ORDINALS[libcrypto]=crypto |
| 3 | ORDINALS[libssl]=ssl |
Richard Levitte | 0483f58 | 2016-06-29 22:59:50 +0200 | [diff] [blame] | 4 | INCLUDE[libcrypto]=. crypto/include include |
| 5 | INCLUDE[libssl]=. include |
Richard Levitte | 777a288 | 2016-01-29 23:33:10 +0100 | [diff] [blame] | 6 | DEPEND[libssl]=libcrypto |
Richard Levitte | fcf80c4 | 2016-01-30 05:45:29 +0100 | [diff] [blame] | 7 | |
Richard Levitte | 27ffb86 | 2016-06-13 22:01:08 +0200 | [diff] [blame] | 8 | # Empty DEPEND "indices" means the dependencies are expected to be built |
| 9 | # unconditionally before anything else. |
| 10 | DEPEND[]=include/openssl/opensslconf.h crypto/include/internal/bn_conf.h \ |
| 11 | crypto/include/internal/dso_conf.h |
| 12 | DEPEND[include/openssl/opensslconf.h]=configdata.pm |
| 13 | GENERATE[include/openssl/opensslconf.h]=include/openssl/opensslconf.h.in |
| 14 | DEPEND[crypto/include/internal/bn_conf.h]=configdata.pm |
| 15 | GENERATE[crypto/include/internal/bn_conf.h]=crypto/include/internal/bn_conf.h.in |
| 16 | DEPEND[crypto/include/internal/dso_conf.h]=configdata.pm |
| 17 | GENERATE[crypto/include/internal/dso_conf.h]=crypto/include/internal/dso_conf.h.in |
| 18 | |
| 19 | |
Richard Levitte | fcf80c4 | 2016-01-30 05:45:29 +0100 | [diff] [blame] | 20 | IF[{- $config{target} =~ /^Cygwin/ -}] |
| 21 | SHARED_NAME[libcrypto]=cygcrypto-{- $config{shlib_major}.".".$config{shlib_minor} -} |
| 22 | SHARED_NAME[libssl]=cygssl-{- $config{shlib_major}.".".$config{shlib_minor} -} |
| 23 | ELSIF[{- $config{target} =~ /^mingw/ -}] |
Richard Levitte | 520f434 | 2016-02-16 20:37:28 +0100 | [diff] [blame] | 24 | SHARED_NAME[libcrypto]=libcrypto-{- $config{shlib_major}."_".$config{shlib_minor} -}{- $config{target} eq "mingw64" ? "-x64" : "" -} |
| 25 | SHARED_NAME[libssl]=libssl-{- $config{shlib_major}."_".$config{shlib_minor} -}{- $config{target} eq "mingw64" ? "-x64" : "" -} |
Richard Levitte | 08479bb | 2016-03-05 20:02:05 +0100 | [diff] [blame] | 26 | ELSIF[{- $config{target} =~ /^VC-/ -}] |
Andy Polyakov | 6ddb62a | 2016-03-23 20:33:29 +0100 | [diff] [blame] | 27 | SHARED_NAME[libcrypto]=libcrypto-{- $config{shlib_major}."_".$config{shlib_minor} -}{- $target{multilib} -} |
| 28 | SHARED_NAME[libssl]=libssl-{- $config{shlib_major}."_".$config{shlib_minor} -}{- $target{multilib} -} |
Richard Levitte | fcf80c4 | 2016-01-30 05:45:29 +0100 | [diff] [blame] | 29 | ENDIF |
Richard Levitte | e84193e | 2016-01-30 07:14:58 +0100 | [diff] [blame] | 30 | |
| 31 | # VMS has a cultural standard where all libraries are prefixed. |
| 32 | # For OpenSSL, the choice is 'ossl$' (this prefix was claimed in a |
| 33 | # conversation with VSI, Tuesday January 26 2016) |
Richard Levitte | 8842005 | 2016-07-02 08:35:12 +0200 | [diff] [blame] | 34 | # Also, it seems it's usual to have the pointer size the libraries |
| 35 | # were built for as part of the name. |
Richard Levitte | e84193e | 2016-01-30 07:14:58 +0100 | [diff] [blame] | 36 | IF[{- $config{target} =~ /^vms/ -}] |
Richard Levitte | 8842005 | 2016-07-02 08:35:12 +0200 | [diff] [blame] | 37 | RENAME[libcrypto]=ossl$libcrypto{- $target{pointer_size} -} |
| 38 | RENAME[libssl]=ossl$libssl{- $target{pointer_size} -} |
| 39 | SHARED_NAME[libcrypto]=ossl$libcrypto{- sprintf "%02d%02d", $config{shlib_major}, $config{shlib_minor} -}_shr{- $target{pointer_size} -} |
| 40 | SHARED_NAME[libssl]=ossl$libssl{- sprintf "%02d%02d", $config{shlib_major}, $config{shlib_minor} -}_shr{- $target{pointer_size} -} |
Richard Levitte | e84193e | 2016-01-30 07:14:58 +0100 | [diff] [blame] | 41 | ENDIF |