pkgsrc-WIP-changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
gdb-netbsd: Drop local AUXV patch
Module Name: pkgsrc-wip
Committed By: Kamil Rytarowski <n54%gmx.com@localhost>
Pushed By: kamil
Date: Tue Mar 17 12:17:56 2020 +0100
Changeset: c6ae2fe00fa9255d8de836cc9df039c0ca0c563c
Modified Files:
gdb-netbsd/distinfo
Removed Files:
gdb-netbsd/patches/patch-gdb_auxv.c
Log Message:
gdb-netbsd: Drop local AUXV patch
A proper fix is pending upstream.
To see a diff of this commit:
https://wip.pkgsrc.org/cgi-bin/gitweb.cgi?p=pkgsrc-wip.git;a=commitdiff;h=c6ae2fe00fa9255d8de836cc9df039c0ca0c563c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
diffstat:
gdb-netbsd/distinfo | 1 -
gdb-netbsd/patches/patch-gdb_auxv.c | 19 -------------------
2 files changed, 20 deletions(-)
diffs:
diff --git a/gdb-netbsd/distinfo b/gdb-netbsd/distinfo
index 2e294cfc61..9b346dcfc6 100644
--- a/gdb-netbsd/distinfo
+++ b/gdb-netbsd/distinfo
@@ -16,7 +16,6 @@ SHA1 (patch-gdb_amd64-nbsd-nat.c) = 26ad634a79441949c076cee07e4e5baaaa1402f1
SHA1 (patch-gdb_amd64-nbsd-tdep.c) = 99328cdd390281ff298c08010907195738a85489
SHA1 (patch-gdb_arm-nbsd-nat.c) = 09a21d2eed39dc4e74a1f442c6ee59dfbf9c6f54
SHA1 (patch-gdb_arm-nbsd-tdep.c) = 63009d506e2f92e681529d96150b1c4d04a7afbe
-SHA1 (patch-gdb_auxv.c) = b238b9bc4b598a96feed4a64e7c2f5120e2d3367
SHA1 (patch-gdb_bsd-kvm.c) = d04c44fb4c779dd3ecd12c3179ad8a63351e5239
SHA1 (patch-gdb_config_aarch64_nbsd.mh) = 6d7793009bda1568717ed897c02e77137e47b83b
SHA1 (patch-gdb_config_ia64_netbsd.mh) = ed89b31ad808e15e1823af1a022ce37194e6f78e
diff --git a/gdb-netbsd/patches/patch-gdb_auxv.c b/gdb-netbsd/patches/patch-gdb_auxv.c
deleted file mode 100644
index c2757b8509..0000000000
--- a/gdb-netbsd/patches/patch-gdb_auxv.c
+++ /dev/null
@@ -1,19 +0,0 @@
-$NetBSD$
-
---- gdb/auxv.c.orig 2019-07-16 00:00:27.000000000 +0000
-+++ gdb/auxv.c
-@@ -266,8 +266,12 @@ default_auxv_parse (struct target_ops *o
-
- if (endptr - ptr < sizeof_auxv_field * 2)
- return -1;
--
-- *typep = extract_unsigned_integer (ptr, sizeof_auxv_field, byte_order);
-+#ifdef __NetBSD__
-+ const int sizeof_auxv_type = 4;
-+#else
-+ const int sizeof_auxv_type = sizeof_auxv_field;
-+#endif
-+ *typep = extract_unsigned_integer (ptr, sizeof_auxv_type, byte_order);
- ptr += sizeof_auxv_field;
- *valp = extract_unsigned_integer (ptr, sizeof_auxv_field, byte_order);
- ptr += sizeof_auxv_field;
Home |
Main Index |
Thread Index |
Old Index