mirror of
https://github.com/openssl/openssl.git
synced 2025-03-31 20:10:45 +08:00
VMS: fix library compatibility settings in util/mkdef.pl
The regexp to parse the incoming version number was flawed, and since we allow ourselves to add missing APIs in PATCH releases, the compatibility settings still need to include the PATCH part of the version number. Reviewed-by: Matthias St. Pierre <Matthias.St.Pierre@ncp-e.com> (Merged from https://github.com/openssl/openssl/pull/7858)
This commit is contained in:
parent
2bafe6cfed
commit
d1c87578a2
@ -386,7 +386,9 @@ _____
|
||||
_____
|
||||
|
||||
if (defined $version) {
|
||||
my ($libvmajor, $libvminor) = $version =~ /^(\d+)_(\d+)$/;
|
||||
$version =~ /^(\d+)\.(\d+)\.(\d+)/;
|
||||
my $libvmajor = $1;
|
||||
my $libvminor = $2 * 100 + $3;
|
||||
print <<"_____";
|
||||
GSMATCH=LEQUAL,$libvmajor,$libvminor;
|
||||
_____
|
||||
|
Loading…
x
Reference in New Issue
Block a user