1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-29 05:21:33 +03:00

openssl: add a more specific DES support detection

Improve detection for DES support in OpenSSL, to allow compilation
against system OpenSSL without DES.

Note that MariaDB needs to be compiled against OpenSSL-like library
that itself has DES support which cmake detected. Positive detection
is indicated with CMake variable HAVE_des 1.

Signed-off-by: Dimitri John Ledkov <dimitri.ledkov@surgut.co.uk>
This commit is contained in:
Dimitri John Ledkov
2024-04-13 23:29:11 +01:00
committed by Daniel Black
parent f9575495ce
commit bf77f9793d
10 changed files with 67 additions and 55 deletions

View File

@ -1,5 +1,5 @@
-- source include/have_innodb.inc
-- source include/have_ssl_crypto_functs.inc
-- source include/have_des.inc
CREATE TABLE t1(a int) engine=innodb;
INSERT INTO t1 VALUES (1);