diff options
author | he <he@pkgsrc.org> | 2021-04-20 08:25:51 +0000 |
---|---|---|
committer | he <he@pkgsrc.org> | 2021-04-20 08:25:51 +0000 |
commit | 78b4dadb92b4e0950fa2b4ecb49b13746356461c (patch) | |
tree | 63b2a7f181e5576e96c0353a605119734b9d73d4 /lang | |
parent | e5de98b774f2a44ef49ce4d4c82f8347e3bbc09a (diff) | |
download | pkgsrc-78b4dadb92b4e0950fa2b4ecb49b13746356461c.tar.gz |
Remove a patch which no longer applies.
This appears to no longer be needed.
I could swear I had done a successful re-build before the previous commit,
so not sure how that happened.
Build fix, so no revision bump.
Diffstat (limited to 'lang')
-rw-r--r-- | lang/rust/distinfo | 3 | ||||
-rw-r--r-- | lang/rust/patches/patch-library_std_build.rs | 32 |
2 files changed, 1 insertions, 34 deletions
diff --git a/lang/rust/distinfo b/lang/rust/distinfo index bb6a0c3aa99..3b235811f8b 100644 --- a/lang/rust/distinfo +++ b/lang/rust/distinfo @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.129 2021/04/19 17:08:09 he Exp $ +$NetBSD: distinfo,v 1.130 2021/04/20 08:25:51 he Exp $ SHA1 (rust-1.49.0-aarch64-unknown-netbsd.tar.gz) = 97804c99b787a54bf16c0c13665eb74cab6c7bba RMD160 (rust-1.49.0-aarch64-unknown-netbsd.tar.gz) = 5940c473d0655dc50efc10d2a7dc4bb7c0b85590 @@ -104,7 +104,6 @@ SHA1 (patch-compiler_rustc__target_src_spec_netbsd__base.rs) = 877d185e5ca58a3a3 SHA1 (patch-compiler_rustc__target_src_spec_solaris__base.rs) = f0b41a3a5685ae33d037f8ded0b1fa6f1acb0867 SHA1 (patch-compiler_rustc__target_src_spec_x86__64__sun__solaris.rs) = f629fcf782c0c915c2921456eb1ffa8e91c244c1 SHA1 (patch-library_backtrace_crates_backtrace-sys_src_libbacktrace_configure) = 5dc1cfc843894156b513c86453db5032917a5529 -SHA1 (patch-library_std_build.rs) = c69af2a424bca60bc91741b8d4cb5fd633bbacca SHA1 (patch-library_std_src_sys_unix_mod.rs) = 927b03f3f34bd21a81bd2a8b6bcf30fe241e2d32 SHA1 (patch-library_std_src_sys_unix_thread.rs) = c431e3221849e3220fc63b072984ccb1896f83c8 SHA1 (patch-library_unwind_build.rs) = 2cff0229bfb26445ea3f2e2e5b6e4ea8884df28f diff --git a/lang/rust/patches/patch-library_std_build.rs b/lang/rust/patches/patch-library_std_build.rs deleted file mode 100644 index 110f1b6236a..00000000000 --- a/lang/rust/patches/patch-library_std_build.rs +++ /dev/null @@ -1,32 +0,0 @@ -$NetBSD: patch-library_std_build.rs,v 1.1 2020/11/13 20:35:58 he Exp $ - -- Support PKGSRC_USE_SSP (ugly for now). -- Add libexecinfo for backtrace(). - ---- library/std/build.rs.orig 2020-10-07 07:53:22.000000000 +0000 -+++ library/std/build.rs -@@ -20,6 +20,7 @@ fn main() { - println!("cargo:rustc-cfg=freebsd12"); - } - } else if target.contains("netbsd") { -+ println!("cargo:rustc-link-lib=execinfo"); - println!("cargo:rustc-link-lib=pthread"); - println!("cargo:rustc-link-lib=rt"); - } else if target.contains("dragonfly") || target.contains("openbsd") { -@@ -29,12 +30,16 @@ fn main() { - println!("cargo:rustc-link-lib=posix4"); - println!("cargo:rustc-link-lib=pthread"); - println!("cargo:rustc-link-lib=resolv"); -+ println!("cargo:rustc-link-lib=nsl"); -+ println!("cargo:rustc-link-lib=ssp"); -+ println!("cargo:rustc-link-lib=umem"); - } else if target.contains("illumos") { - println!("cargo:rustc-link-lib=socket"); - println!("cargo:rustc-link-lib=posix4"); - println!("cargo:rustc-link-lib=pthread"); - println!("cargo:rustc-link-lib=resolv"); - println!("cargo:rustc-link-lib=nsl"); -+ println!("cargo:rustc-link-lib=ssp"); - // Use libumem for the (malloc-compatible) allocator - println!("cargo:rustc-link-lib=umem"); - } else if target.contains("apple-darwin") { |