PHPC-2280: Prefer OpenSSL on MacOS over Secure Transport#1463
Merged
alcaeus merged 1 commit intomongodb:masterfrom Sep 8, 2023
Merged
PHPC-2280: Prefer OpenSSL on MacOS over Secure Transport#1463alcaeus merged 1 commit intomongodb:masterfrom
alcaeus merged 1 commit intomongodb:masterfrom
Conversation
b1096d2 to
c30fb94
Compare
jmikola
approved these changes
Sep 7, 2023
|
Hi @alcaeus, thanks for this PR! I am experiencing this specific problem & saw the issue linked. I was wondering whether you plan to release this fix in the near future or if I should consider compiling the extension manually instead? Thanks! |
Member
|
@tgalopin: The 1.17 release will likely ship sometime in November, following libmongoc 1.25. If you're presently on 1.16, manually compiling a stable release with |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
PHPC-2280
On MacOS, the driver is compiled using Secure Transport when the
--with-mongodb-sslswitch is set toauto. While this works fine in a CLI context it causes segmentation faults when using the driver in php-fpm, which usually is compiled using OpenSSL. To work around this issue, we now prefer OpenSSL on all platforms, and only check for Secure Transport on MacOS if no OpenSSL installation was found. To continue using Secure Transport on MacOS, users should specify--with-mongodb-ssl=darwin.