aws-sdk-cpp icon indicating copy to clipboard operation
aws-sdk-cpp copied to clipboard

Fix USE_OPENSSL is ignored

Open temideoye opened this issue 3 years ago • 1 comments

Currently, -DUSE_OPENSSL has no effect. In its stead, an undocumented variable – ENABLE_OPENSSL_ENCRYPTION – is what gets evaluated to verify if OpenSSL was requested. ENABLE_OPENSSL_ENCRYPTION defaults to undefined/OFF, which invariably means OpenSSL is actually never used, regardless of the value of USE_OPENSSL. This push proposes a fix by linking USE_OPENSSL to ENABLE_OPENSSL_ENCRYPTION.

By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the terms of your choice.

temideoye avatar Sep 09 '22 06:09 temideoye

https://github.com/aws/aws-sdk-cpp/issues/1888

jmklix avatar Nov 18 '22 19:11 jmklix