1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-27 18:02:13 +03:00

mtr check for openssl support for AES_CTR

This commit is contained in:
Sergei Golubchik
2015-01-09 15:12:17 +01:00
parent f3da18f635
commit e109a662c7
6 changed files with 10 additions and 1 deletions

View File

@ -66,6 +66,10 @@ sub skip_combinations {
unless $::mysqld_variables{'version-ssl-library'} =~ /OpenSSL (\S+)/
and $1 ge "1.0.1";
$skip{'include/have_openssl_ctr.inc'} = 'no or too old openssl'
unless $::mysqld_variables{'version-ssl-library'} =~ /OpenSSL (\S+)/
and $1 ge "1.0.1";
%skip;
}