2016-01-30 06:14:58 +00:00
|
|
|
$ ! OpenSSL shutdown script
|
|
|
|
$ !
|
|
|
|
$ ! This script deassigns the logical names used by the installation
|
|
|
|
$ ! of OpenSSL. It can do so at any level, defined by P1.
|
|
|
|
$ !
|
|
|
|
$ ! P1 Qualifier(s) for DEASSIGN.
|
|
|
|
$ ! Default: /PROCESS
|
|
|
|
$ !
|
|
|
|
$ ! P2 If the value is "NOALIASES", no alias logical names are
|
|
|
|
$ ! deassigned.
|
|
|
|
$
|
|
|
|
$ status = %x10000001 ! Generic success
|
|
|
|
$
|
|
|
|
$ ! In case there's a problem
|
|
|
|
$ ON CONTROL_Y THEN GOTO bailout
|
|
|
|
$ ON ERROR THEN GOTO bailout
|
|
|
|
$
|
|
|
|
$ ! Find the architecture
|
|
|
|
$ IF F$GETSYI("CPU") .LT. 128
|
|
|
|
$ THEN
|
|
|
|
$ arch := VAX
|
|
|
|
$ ELSE
|
|
|
|
$ arch := F$EDIT(F$GETSYI("ARCH_NAME"),"UPCASE")
|
|
|
|
$ IF arch .EQS. "" THEN GOTO unknown_arch
|
|
|
|
$ ENDIF
|
|
|
|
$
|
|
|
|
$ ! Abbrevs
|
|
|
|
$ DEAS := DEASSIGN /NOLOG 'P1'
|
Switch to MAJOR.MINOR.PATCH versioning and version 3.0.0-dev
We're strictly use version numbers of the form MAJOR.MINOR.PATCH.
Letter releases are things of days past.
The most central change is that we now express the version number with
three macros, one for each part of the version number:
OPENSSL_VERSION_MAJOR
OPENSSL_VERSION_MINOR
OPENSSL_VERSION_PATCH
We also provide two additional macros to express pre-release and build
metadata information (also specified in semantic versioning):
OPENSSL_VERSION_PRE_RELEASE
OPENSSL_VERSION_BUILD_METADATA
To get the library's idea of all those values, we introduce the
following functions:
unsigned int OPENSSL_version_major(void);
unsigned int OPENSSL_version_minor(void);
unsigned int OPENSSL_version_patch(void);
const char *OPENSSL_version_pre_release(void);
const char *OPENSSL_version_build_metadata(void);
Additionally, for shared library versioning (which is out of scope in
semantic versioning, but that we still need):
OPENSSL_SHLIB_VERSION
We also provide a macro that contains the release date. This is not
part of the version number, but is extra information that we want to
be able to display:
OPENSSL_RELEASE_DATE
Finally, also provide the following convenience functions:
const char *OPENSSL_version_text(void);
const char *OPENSSL_version_text_full(void);
The following macros and functions are deprecated, and while currently
existing for backward compatibility, they are expected to disappear:
OPENSSL_VERSION_NUMBER
OPENSSL_VERSION_TEXT
OPENSSL_VERSION
OpenSSL_version_num()
OpenSSL_version()
Also, this function is introduced to replace OpenSSL_version() for all
indexes except for OPENSSL_VERSION:
OPENSSL_info()
For configuration, the option 'newversion-only' is added to disable all
the macros and functions that are mentioned as deprecated above.
Reviewed-by: Tim Hudson <tjh@openssl.org>
Reviewed-by: Matthias St. Pierre <Matthias.St.Pierre@ncp-e.com>
Reviewed-by: Matt Caswell <matt@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/7724)
2018-09-27 13:56:35 +00:00
|
|
|
$ sv := {- sprintf "%02d%02d", split m|\.|, $config{shlib_version} -}
|
2016-07-02 06:31:00 +00:00
|
|
|
$ pz := {- $config{pointer_size} -}
|
2016-01-30 06:14:58 +00:00
|
|
|
$
|
2016-07-08 16:27:56 +00:00
|
|
|
$ DEAS OSSL$DATAROOT
|
2016-07-06 16:53:56 +00:00
|
|
|
$ 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'
|
2016-08-03 10:53:49 +00:00
|
|
|
${- output_off() if $config{no_shared}; "" -}
|
2016-07-02 06:35:12 +00:00
|
|
|
$ DEAS OSSL$LIBCRYPTO'sv'_SHR'pz'
|
|
|
|
$ DEAS OSSL$LIBSSL'sv'_SHR'pz'
|
2016-08-03 10:53:49 +00:00
|
|
|
${- output_on() if $config{no_shared}; "" -}
|
2016-07-06 17:04:55 +00:00
|
|
|
$ DEAS OPENSSL
|
|
|
|
$
|
2016-01-30 06:14:58 +00:00
|
|
|
$ IF P2 .NES. "NOALIASES"
|
|
|
|
$ THEN
|
|
|
|
$ DEAS OSSL$ENGINES
|
2016-08-03 10:53:49 +00:00
|
|
|
${- output_off() if $config{no_shared}; "" -}
|
2016-07-02 06:35:12 +00:00
|
|
|
$ DEAS OSSL$LIBCRYPTO_SHR'pz'
|
|
|
|
$ DEAS OSSL$LIBSSL_SHR'pz'
|
2016-08-03 10:53:49 +00:00
|
|
|
${- output_on() if $config{no_shared}; "" -}
|
2016-01-30 06:14:58 +00:00
|
|
|
$ ENDIF
|
|
|
|
$
|
|
|
|
$ EXIT 'status'
|