]> git.ipfire.org Git - thirdparty/haproxy.git/commitdiff
BUILD: SSL: do not "update" BoringSSL version equivalent anymore
authorIlya Shipitsin <chipitsine@gmail.com>
Sat, 21 Nov 2020 18:13:41 +0000 (23:13 +0500)
committerWilliam Lallemand <wlallemand@haproxy.org>
Tue, 24 Nov 2020 08:54:44 +0000 (09:54 +0100)
we have added all required fine guarding, no need to reduce
BoringSSL version back to 1.1.0 anymore, we do not depend on it

include/haproxy/openssl-compat.h

index 6b5a489e1c0a46acda074e05c183c56fdae23813..42349d7c11a815b78458e321bb7e1d5ade8955fa 100644 (file)
  * extra features with ORs and not with AND NOT.
  */
 #define HA_OPENSSL_VERSION_NUMBER 0x1000107fL
-#elif defined(OPENSSL_IS_BORINGSSL)
-/*
- * in 49e9f67d8b7cbeb3953b5548ad1009d15947a523 BoringSSL has changed its version to 1.1.1
- * Let's switch it back to 1.1.0
- */
-#define HA_OPENSSL_VERSION_NUMBER 0x1010007f
 #else /* this is for a real OpenSSL or a truly compatible derivative */
 #define HA_OPENSSL_VERSION_NUMBER OPENSSL_VERSION_NUMBER
 #endif