Uh oh!
There was an error while loading. Please reload this page.
Remove RSA guard for OSSL - #127192
Conversation
There was a problem hiding this comment.
Pull request overview
Updates OpenSSL feature detection to avoid compilation failures when probing deprecated RSA APIs during CMake configuration (fixing the reported Mono build break on linux bionic arm64).
Changes:
- Switch RSA legacy API detection from a
check_source_compilessnippet (including<openssl/rsa.h>) tocheck_function_exists(RSA_new). - Keep
HAVE_OPENSSL_RSA_PRIMITIVEfeature flag generation intact while making the probe less header-sensitive.
PranavSenthilnathan
commented
Apr 20, 2026
/azp run runtime-extra-platforms |
|
Azure Pipelines successfully started running 1 pipeline(s). |
steveisok
commented
Apr 21, 2026
/azp run runtime-linuxbionic |
|
Azure Pipelines successfully started running 1 pipeline(s). |
PranavSenthilnathan
commented
Apr 21, 2026
/azp run runtime-linuxbionic |
|
Azure Pipelines successfully started running 1 pipeline(s). |
steveisok
commented
Apr 21, 2026
Weird, not sure what's up with the linux-bionic pipeline. |
steveisok
commented
Apr 21, 2026
/azp run runtime-extra-platforms |
|
Azure Pipelines successfully started running 1 pipeline(s). |
PranavSenthilnathan
commented
Apr 22, 2026
/azp run runtime-extra-platforms |
|
Azure Pipelines successfully started running 1 pipeline(s). |
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
steveisok
commented
Apr 22, 2026
/ba-g Unrealted failures - prioritizing merge to unblock the VMR build. |
Uh oh!
There was an error while loading. Please reload this page.
Fixes#127154
Removes the check for deprecated RSA APIs. This was intended to detect if the APIs were removed in some future version of OSSL but the Linux build isn't detecting it correctly. Since all the OSSL versions currently still have the APIs, it's safe to remove the guard to unlock the build.