summaryrefslogtreecommitdiffstats
path: root/build.info
diff options
context:
space:
mode:
Diffstat (limited to 'build.info')
-rw-r--r--build.info12
1 files changed, 12 insertions, 0 deletions
diff --git a/build.info b/build.info
index 019fb86ad7..9a3d9bdf7b 100644
--- a/build.info
+++ b/build.info
@@ -13,3 +13,15 @@ ELSIF[{- $config{target} =~ /^mingw/ -}]
SHARED_NAME[libcrypto]=libeay32
SHARED_NAME[libssl]=ssleay32
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.
+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} -}
+ENDIF