aboutsummaryrefslogtreecommitdiffstats
path: root/build.info
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2016-07-02 08:35:12 +0200
committerRichard Levitte <levitte@openssl.org>2016-07-02 15:49:45 +0200
commit8842005e75c2f42ed594a3b44189e0e5ac29be18 (patch)
tree8d6ef334550ff3c870a3e1e789a563f70859c0df /build.info
parent34d5490a1dc0d3c27743879f303102528e567f82 (diff)
downloadopenssl-8842005e75c2f42ed594a3b44189e0e5ac29be18.tar.gz
Have the VMS shared library file names contain the shared version
Also, have the static library file names contain the pointer size when applicable. Reviewed-by: Rich Salz <rsalz@openssl.org>
Diffstat (limited to 'build.info')
-rw-r--r--build.info12
1 files changed, 6 insertions, 6 deletions
diff --git a/build.info b/build.info
index cfaa712a7e..fa136dc431 100644
--- a/build.info
+++ b/build.info
@@ -31,11 +31,11 @@ ENDIF
# VMS has a cultural standard where all libraries are prefixed.
# For OpenSSL, the choice is 'ossl$' (this prefix was claimed in a
# conversation with VSI, Tuesday January 26 2016)
-# Also, it seems it's usual to have a suffix to the shared library name
-# for the different pointer sizes that were built for.
+# Also, it seems it's usual to have the pointer size the libraries
+# were built for as part of the name.
IF[{- $config{target} =~ /^vms/ -}]
- RENAME[libcrypto]=ossl$libcrypto
- RENAME[libssl]=ossl$libssl
- SHARED_NAME[libcrypto]=ossl$libcrypto_shr{- $target{pointer_size} -}
- SHARED_NAME[libssl]=ossl$libssl_shr{- $target{pointer_size} -}
+ RENAME[libcrypto]=ossl$libcrypto{- $target{pointer_size} -}
+ RENAME[libssl]=ossl$libssl{- $target{pointer_size} -}
+ SHARED_NAME[libcrypto]=ossl$libcrypto{- sprintf "%02d%02d", $config{shlib_major}, $config{shlib_minor} -}_shr{- $target{pointer_size} -}
+ SHARED_NAME[libssl]=ossl$libssl{- sprintf "%02d%02d", $config{shlib_major}, $config{shlib_minor} -}_shr{- $target{pointer_size} -}
ENDIF