mirror of
https://github.com/openssl/openssl.git
synced 2025-03-13 19:47:47 +08:00
The program name version info is supposed to be the major release version number. This was forgotten when the versioning scheme was changed for 3.0, so the minor release version number slipped in as well. Reviewed-by: Tomas Mraz <tomas@openssl.org> Reviewed-by: Matt Caswell <matt@openssl.org> (Merged from https://github.com/openssl/openssl/pull/16842) (cherry picked from commit 3c9293b4715229dc7ea2116d22c623c2a92ac69a)
15 lines
323 B
Plaintext
15 lines
323 B
Plaintext
$ ! OpenSSL utilities
|
|
$ !
|
|
$
|
|
$ v := {- sprintf "%02d", split(/\./, $config{version}) -}
|
|
$
|
|
$ OPENSSL'v' :== $OSSL$EXE:OPENSSL'v'
|
|
$ OPENSSL :== $OSSL$EXE:OPENSSL'v'
|
|
$
|
|
$ IF F$TYPE(PERL) .EQS. "STRING"
|
|
$ THEN
|
|
$ C_REHASH :== 'PERL' OSSL$EXE:c_rehash.pl
|
|
$ ELSE
|
|
$ WRITE SYS$ERROR "NOTE: no perl => no C_REHASH"
|
|
$ ENDIF
|