Browse Source

strace: update to 6.5

Waldemar Brodkorb 7 months ago
parent
commit
0d197aaf09
2 changed files with 2 additions and 22 deletions
  1. 2 2
      package/strace/Makefile
  2. 0 20
      package/strace/patches/patch-src_stage_output_c

+ 2 - 2
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

+ 0 - 20
package/strace/patches/patch-src_stage_output_c

@@ -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;