aws-sdk-cpp
aws-sdk-cpp copied to clipboard
Fix USE_OPENSSL is ignored
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.
https://github.com/aws/aws-sdk-cpp/issues/1888