summaryrefslogtreecommitdiff
path: root/package/strace
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2023-09-24 13:55:14 +0200
committerWaldemar Brodkorb <wbx@openadk.org>2023-09-24 13:55:14 +0200
commit0d197aaf09c74b0684b52462a26a436d668afe35 (patch)
tree9002b6697495350db589c8e5703d1041c899c4f1 /package/strace
parent13133993f143b5b1e54816258bdce1cb24b7f6bb (diff)
strace: update to 6.5
Diffstat (limited to 'package/strace')
-rw-r--r--package/strace/Makefile4
-rw-r--r--package/strace/patches/patch-src_stage_output_c20
2 files changed, 2 insertions, 22 deletions
diff --git a/package/strace/Makefile b/package/strace/Makefile
index cf721a8e5..0e05085ec 100644
--- a/package/strace/Makefile
+++ b/package/strace/Makefile
@@ -4,9 +4,9 @@
include ${ADK_TOPDIR}/rules.mk
PKG_NAME:= strace
-PKG_VERSION:= 6.3
+PKG_VERSION:= 6.5
PKG_RELEASE:= 1
-PKG_HASH:= e17878e301506c1cc301611118ad14efee7f8bcef63b27ace5d290acce7bb731
+PKG_HASH:= dfb051702389e1979a151892b5901afc9e93bbc1c70d84c906ade3224ca91980
PKG_DESCR:= system call trace program
PKG_SECTION:= app/debug
PKG_URL:= https://strace.io
diff --git a/package/strace/patches/patch-src_stage_output_c b/package/strace/patches/patch-src_stage_output_c
deleted file mode 100644
index 0762e4a6c..000000000
--- a/package/strace/patches/patch-src_stage_output_c
+++ /dev/null
@@ -1,20 +0,0 @@
---- strace-5.15.orig/src/stage_output.c 2021-02-16 09:00:00.000000000 +0100
-+++ strace-5.15/src/stage_output.c 2021-12-15 15:05:58.500813814 +0100
-@@ -26,7 +26,7 @@ strace_open_memstream(struct tcb *tcp)
- {
- FILE *fp = NULL;
-
--#if HAVE_OPEN_MEMSTREAM
-+#if defined(HAVE_OPEN_MEMSTREAM)
- tcp->staged_output_data = xmalloc(sizeof(*tcp->staged_output_data));
- fp = open_memstream(&tcp->staged_output_data->memfptr,
- &tcp->staged_output_data->memfloc);
-@@ -49,7 +49,7 @@ strace_open_memstream(struct tcb *tcp)
- void
- strace_close_memstream(struct tcb *tcp, bool publish)
- {
--#if HAVE_OPEN_MEMSTREAM
-+#if defined(HAVE_OPEN_MEMSTREAM)
- if (!tcp->staged_output_data) {
- debug_msg("memstream already closed");
- return;