From c3ed5951d81715ddabd920328a7bf60831105b23 Mon Sep 17 00:00:00 2001 From: Fabian Keil Date: Sun, 2 Aug 2015 19:41:56 +0200 Subject: [PATCH 103/325] crypto/openssl: Update OPENSSL_VERSION_TEXT and break 'FIPS mode' Obtained from: ElectroBSD --- crypto/openssl/include/openssl/opensslv.h | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/crypto/openssl/include/openssl/opensslv.h b/crypto/openssl/include/openssl/opensslv.h index 6e9ad75755c8..cf3b97d1ae86 100644 --- a/crypto/openssl/include/openssl/opensslv.h +++ b/crypto/openssl/include/openssl/opensslv.h @@ -40,7 +40,12 @@ extern "C" { * major minor fix final patch/beta) */ # define OPENSSL_VERSION_NUMBER 0x101010cfL -# define OPENSSL_VERSION_TEXT "OpenSSL 1.1.1l-freebsd 24 Aug 2021" +# ifdef OPENSSL_FIPS +# error "Due to being silly, FIPS validation is not supported by ElectroBSD" +# else +# define OPENSSL_VERSION_TEXT "OpenSSL 1.1.1l-ElectroBSD 2021-08-24" +# endif +# define OPENSSL_VERSION_PTEXT " part of " OPENSSL_VERSION_TEXT /*- * The macros below are to be used for shared library (.so, .dll, ...) -- 2.32.0