| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -249,6 +249,7 @@ def library_recipes(): | |||
| 249 | 249 | name="OpenSSL 1.1.1q", | |
| 250 | 250 | url="https://www.openssl.org/source/openssl-1.1.1q.tar.gz", | |
| 251 | 251 | checksum='d7939ce614029cdff0b6c20f0e2e5703158a489a72b2507b8bd51bf8c8fd10ca', | |
| 252 | + patches=['openssl1.1.1q-pr-18719.patch'], | ||
| 252 | 253 | buildrecipe=build_universal_openssl, | |
| 253 | 254 | configure=None, | |
| 254 | 255 | install=None, | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -0,0 +1,17 @@ | |||
| 1 | + https://github.com/openssl/openssl/commit/60f011f584d80447e86cae1d1bd3ae24bc13235b | ||
| 2 | + This fixes a regression in 1.1.1q: | ||
| 3 | + | ||
| 4 | + test/v3ext.c:201:24: error: implicitly declaring library function 'memcmp' with type 'int (const void *, const void *, unsigned long)' [-Werror,-Wimplicit-function-declaration] | ||
| 5 | + if (!TEST_true(memcmp(ip1->data, ip2->data, ip1->length) <= 0)) | ||
| 6 | + | ||
| 7 | + diff -Naur openssl-1.1.1q/test/v3ext.c openssl-1.1.1q-patched/test/v3ext.c | ||
| 8 | + --- openssl-1.1.1q/test/v3ext.c 2022-07-05 09:08:33.000000000 +0000 | ||
| 9 | + +++ openssl-1.1.1q-patched/test/v3ext.c 2022-09-05 16:54:45.740859256 +0000 | ||
| 10 | + @@ -8,6 +8,7 @@ | ||
| 11 | + */ | ||
| 12 | + | ||
| 13 | + #include <stdio.h> | ||
| 14 | + +#include <string.h> | ||
| 15 | + #include <openssl/x509.h> | ||
| 16 | + #include <openssl/x509v3.h> | ||
| 17 | + #include <openssl/pem.h> | ||
| Back | FazBrowse Home | New Git URL |
0 commit comments