-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
SSLCipher was the first use of a feature which could appear in a later version of NSS than we support. Rather than bumping the minimum NSS version, we chose to use compile-time detection of the NSS version and limit our code accordingly. However, this sets a precedence for ignoring the features actually present in the NSS system. Certain downstream distributions are fond of backporting features, which means our code could've executed but didn't. Switching to feature detection (via the check_struct_has_member macro) allows us to be sure we execute this code on as many platforms as possible. Signed-off-by: Alexander Scheel <[email protected]>
- Loading branch information
Showing
5 changed files
with
32 additions
and
9 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
#ifndef _CONFIG_H | ||
#define _CONFIG_H | ||
|
||
#cmakedefine HAVE_NSS_CIPHER_SUITE_INFO_KDFHASH 1 | ||
|
||
#endif |
This file contains 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