summaryrefslogtreecommitdiffstats
path: root/debian/patches/u-hurd-libloading-0.7.4.patch
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-06-19 09:26:01 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-06-19 09:26:01 +0000
commitc29d7c1ba10d6debd11f9d8aad5d069a6491e60e (patch)
treea2ad46eb513b315f0efd8170af5eb08870165757 /debian/patches/u-hurd-libloading-0.7.4.patch
parentMerging upstream version 1.76.0+dfsg1. (diff)
downloadrustc-c29d7c1ba10d6debd11f9d8aad5d069a6491e60e.tar.xz
rustc-c29d7c1ba10d6debd11f9d8aad5d069a6491e60e.zip
Adding debian version 1.76.0+dfsg1-1.debian/1.76.0+dfsg1-1debian
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'debian/patches/u-hurd-libloading-0.7.4.patch')
-rw-r--r--debian/patches/u-hurd-libloading-0.7.4.patch44
1 files changed, 0 insertions, 44 deletions
diff --git a/debian/patches/u-hurd-libloading-0.7.4.patch b/debian/patches/u-hurd-libloading-0.7.4.patch
deleted file mode 100644
index 3b4ce6ba9..000000000
--- a/debian/patches/u-hurd-libloading-0.7.4.patch
+++ /dev/null
@@ -1,44 +0,0 @@
-https://github.com/nagisa/rust_libloading/pull/129
-
-commit 2e3104a30c4d14aa48871036b779f968a9472ff6
-Author: Samuel Thibault <samuel.thibault@ens-lyon.org>
-Date: Tue Aug 29 19:55:29 2023 +0000
-
- Add GNU/Hurd support
-
-diff --git a/vendor/libloading-0.7.4/src/os/unix/consts.rs b/vendor/libloading-0.7.4/src/os/unix/consts.rs
-index ea7a6a1..5794ade 100644
---- a/vendor/libloading-0.7.4/src/os/unix/consts.rs
-+++ b/vendor/libloading-0.7.4/src/os/unix/consts.rs
-@@ -82,6 +82,7 @@ mod posix {
-
- target_os = "fuchsia",
- target_os = "redox",
-+ target_os = "hurd",
- ))] {
- pub(super) const RTLD_LAZY: c_int = 1;
- } else {
-@@ -115,6 +116,7 @@ mod posix {
-
- target_os = "fuchsia",
- target_os = "redox",
-+ target_os = "hurd",
- ))] {
- pub(super) const RTLD_NOW: c_int = 2;
- } else if #[cfg(all(target_os = "android",target_pointer_width = "32"))] {
-@@ -162,6 +164,7 @@ mod posix {
-
- target_os = "fuchsia",
- target_os = "redox",
-+ target_os = "hurd",
- ))] {
- pub(super) const RTLD_GLOBAL: c_int = 0x100;
- } else {
-@@ -200,6 +203,7 @@ mod posix {
-
- target_os = "fuchsia",
- target_os = "redox",
-+ target_os = "hurd",
- ))] {
- pub(super) const RTLD_LOCAL: c_int = 0;
- } else {