Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by Ismael Luceno (2ca749b8b027fb787190088a7d58d7887d4246ac)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Ismael Luceno <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by Ismael Luceno (2ca749b8b027fb787190088a7d58d7887d4246ac)
  • Date: Tue, 29 Dec 2020 17:14:08 +0000

GIT changes to master grimoire by Ismael Luceno <ismael AT sourcemage.org>:

devel/rust/HISTORY | 1 +
devel/rust/patches/0001-libressl-version-check.patch | 13 +++++++++++++
2 files changed, 14 insertions(+)

New commits:
commit 2ca749b8b027fb787190088a7d58d7887d4246ac
Author: Ismael Luceno <ismael AT sourcemage.org>
Commit: Ismael Luceno <ismael AT sourcemage.org>

rust: Allow to build against libressl 3.2.x & 3.3.x

diff --git a/devel/rust/HISTORY b/devel/rust/HISTORY
index 05fac7c..318af02 100644
--- a/devel/rust/HISTORY
+++ b/devel/rust/HISTORY
@@ -10,6 +10,7 @@
patches/0011-Dynamically-link-libc-on-musl-by-default.patch,

patches/0012-Fix-dynamic-linkage-of-musl-libc-for-the-libc-crate.patch,
patches/need-ssp_nonshared.patch: Fixed build against musl libc
+ * patches/0001-libressl-version-check.patch: Enabled build against
libressl 3.2.x & 3.3.x

2020-10-10 Florian Franzmann <siflfran AT hawo.stw.uni-erlangen.de>
* DETAILS: version 1.47.0, cargo version 0.47.0
diff --git a/devel/rust/patches/0001-libressl-version-check.patch
b/devel/rust/patches/0001-libressl-version-check.patch
new file mode 100644
index 0000000..1f7ad50
--- /dev/null
+++ b/devel/rust/patches/0001-libressl-version-check.patch
@@ -0,0 +1,13 @@
+Allow to build against libressl 3.2.x & 3.3.x.
+
+--- a/vendor/openssl-sys/build/main.rs
++++ b/vendor/openssl-sys/build/main.rs
+@@ -221,5 +221,7 @@ See rust-openssl README for more information:
+ (3, 1, 0) => ('3', '1', '0'),
+ (3, 1, _) => ('3', '1', 'x'),
+ (3, 2, 0) => ('3', '2', '0'),
++ (3, 2, _) => ('3', '2', 'x'),
++ (3, 3, _) => ('3', '3', 'x'),
+ _ => version_error(),
+ };
+



  • [SM-Commit] GIT changes to master grimoire by Ismael Luceno (2ca749b8b027fb787190088a7d58d7887d4246ac), Ismael Luceno, 12/29/2020

Archive powered by MHonArc 2.6.24.

Top of Page