-
Notifications
You must be signed in to change notification settings - Fork 97
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Switched to https://github.com/kzalewski/openssl-1.1.1 for security update backported from OpenSSL 3. OpenSSL no longer provide free security update to OpenSSL 1.1.1 after 1.1.1w.
- Loading branch information
Showing
5 changed files
with
31 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 was deleted.
Oops, something went wrong.
25 changes: 25 additions & 0 deletions
25
runtime-cryptography/openssl-1.1/autobuild/patches/0001-patch-Configure-for-loongson3.patch
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,25 @@ | ||
From 7bc94b7861c09c5307af4dfcfdb6a3439b4d37bc Mon Sep 17 00:00:00 2001 | ||
From: Student Main <[email protected]> | ||
Date: Wed, 12 Feb 2025 13:27:40 +0800 | ||
Subject: [PATCH] patch Configure for loongson3 | ||
|
||
--- | ||
Configure | 2 +- | ||
1 file changed, 1 insertion(+), 1 deletion(-) | ||
|
||
diff --git a/Configure b/Configure | ||
index 78cc15d..d6484d5 100755 | ||
--- a/Configure | ||
+++ b/Configure | ||
@@ -1248,7 +1248,7 @@ if ($target =~ /linux.*-mips/ && !$disabled{asm} | ||
# minimally required architecture flags for assembly modules | ||
my $value; | ||
$value = '-mips2' if ($target =~ /mips32/); | ||
- $value = '-mips3' if ($target =~ /mips64/); | ||
+ $value = '-mips64r2' if ($target =~ /mips64/); | ||
unshift @{$config{cflags}}, $value; | ||
unshift @{$config{cxxflags}}, $value if $config{CXX}; | ||
} | ||
-- | ||
2.48.1 | ||
|
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 |
---|---|---|
@@ -1,4 +1,5 @@ | ||
VER=1.1.1w | ||
SRCS="tbl::https://openssl.org/source/openssl-$VER.tar.gz" | ||
CHKSUMS="sha256::cf3098950cb4d853ad95c0841f1f9c6d3dc102dccfcacd521d93925208b76ac8" | ||
CHKUPDATE="anitya::id=2566" | ||
UPSTREAM_VER=1.1.1zb_p2 | ||
VER=${UPSTREAM_VER/_/+} | ||
SRCS="git::commit=tags/$UPSTREAM_VER::https://github.com/kzalewski/openssl-1.1.1.git" | ||
CHKSUMS="SKIP" | ||
CHKUPDATE="anitya::id=376743" |