-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[BACKPORT 2.14] Update OpenSSL to 3.0.8 (#244)
Also bumps krb5 to 1.20.1 (what master is on) to resolve compilation issues. Context: yugabyte/yugabyte-db#16407 Original PR: #239, #248
- Loading branch information
Showing
10 changed files
with
89 additions
and
52 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
Large diffs are not rendered by default.
Oops, something went wrong.
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,27 @@ | ||
diff --git a/engines/e_afalg.c b/engines/e_afalg.c | ||
index 2c08cbb..f362d94 100644 | ||
--- a/engines/e_afalg.c | ||
+++ b/engines/e_afalg.c | ||
@@ -34,10 +34,22 @@ | ||
# warning "AFALG ENGINE requires Kernel Headers >= 4.1.0" | ||
# warning "Skipping Compilation of AFALG engine" | ||
# endif | ||
+# ifndef OPENSSL_NO_DYNAMIC_ENGINE | ||
+OPENSSL_EXPORT | ||
+ int bind_engine(ENGINE *e, const char *id, const dynamic_fns *fns); | ||
+OPENSSL_EXPORT | ||
+ int bind_engine(ENGINE *e, const char *id, const dynamic_fns *fns) | ||
+{ | ||
+ return 0; | ||
+} | ||
+ | ||
+IMPLEMENT_DYNAMIC_CHECK_FN() | ||
+# else | ||
void engine_load_afalg_int(void); | ||
void engine_load_afalg_int(void) | ||
{ | ||
} | ||
+# endif | ||
#else | ||
|
||
# include <linux/if_alg.h> |
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
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