summaryrefslogtreecommitdiff
path: root/VMS/openssl_shutdown.com.in
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2016-07-06 18:53:56 +0200
committerRichard Levitte <levitte@openssl.org>2016-07-07 15:07:32 +0200
commite8fb12957a68c8bf550ae9f5c96c6cc14fa47ee1 (patch)
tree6d439422c48a876e243837ceb7090dd29b26988c /VMS/openssl_shutdown.com.in
parentb2de11c58b57e7f0d58c6f8a1d4177705650647e (diff)
downloadopenssl-new-e8fb12957a68c8bf550ae9f5c96c6cc14fa47ee1.tar.gz
Versioning engines default location: the VMS case
OpenSSL engines are tied to the OpenSSL shared library versions, starting with OpenSSL 1.1. We therefore need to install them in directories which have the shared library version in it's name, to easily allow multiple OpenSSL versions to be installed at the same time. For VMS, the change is a bit more involved, primarly because the top installation directory was already versioned, *as well as* some of the files inside. That's a bit too much. Version numbering in files is also a bit different on VMS. The engines for shared library version 1.1 will therefore end up in OSSL$INSTROOT:[ENGINES0101.'arch'] ('arch' is the architecture we build for) Reviewed-by: Rich Salz <rsalz@openssl.org>
Diffstat (limited to 'VMS/openssl_shutdown.com.in')
-rw-r--r--VMS/openssl_shutdown.com.in25
1 files changed, 9 insertions, 16 deletions
diff --git a/VMS/openssl_shutdown.com.in b/VMS/openssl_shutdown.com.in
index 01971f3667..f27d8556cd 100644
--- a/VMS/openssl_shutdown.com.in
+++ b/VMS/openssl_shutdown.com.in
@@ -30,29 +30,22 @@ $ v := {- sprintf "%02d%02d", split(/\./, $config{version}) -}
$ sv := {- sprintf "%02d%02d", $config{shlib_major}, $config{shlib_minor} -}
$ pz := {- $config{pointer_size} -}
$
-$ DEAS OSSL$ROOT'v'
-$ DEAS OSSL$INCLUDE'v'
-$ DEAS OSSL$LIB'v'
-$ DEAS OSSL$SHARE'v'
-$ DEAS OSSL$ENGINES'v'
-$ DEAS OSSL$EXE'v'
-$ DEAS OSSL$LIBCRYPTO'pz''v'
-$ DEAS OSSL$LIBSSL'pz''v'
+$ DEAS OSSL$INSTROOT
+$ DEAS OSSL$INCLUDE
+$ DEAS OSSL$LIB
+$ DEAS OSSL$SHARE
+$ DEAS OSSL$ENGINES'sv'
+$ DEAS OSSL$EXE
+$ DEAS OSSL$LIBCRYPTO'pz'
+$ DEAS OSSL$LIBSSL'pz'
$ DEAS OSSL$LIBCRYPTO'sv'_SHR'pz'
$ DEAS OSSL$LIBSSL'sv'_SHR'pz'
$ IF P2 .NES. "NOALIASES"
$ THEN
-$ DEAS OSSL$ROOT
-$ DEAS OSSL$INCLUDE
-$ DEAS OSSL$LIB
-$ DEAS OSSL$SHARE
$ DEAS OSSL$ENGINES
-$ DEAS OSSL$EXE
-$ DEAS OPENSSL
-$ DEAS OSSL$LIBCRYPTO'pz'
-$ DEAS OSSL$LIBSSL'pz'
$ DEAS OSSL$LIBCRYPTO_SHR'pz'
$ DEAS OSSL$LIBSSL_SHR'pz'
+$ DEAS OPENSSL
$ ENDIF
$
$ EXIT 'status'