diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2022-01-08 20:47:59 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2022-01-15 15:02:40 +0100 |
commit | be87bc0d59bbf96461567a05693af5a380bae103 (patch) | |
tree | cf14cd8492a4ef14705af433d7e788fd4c6b6c0d /package/strace/patches | |
parent | 4c17f8c941a321c8136f7341ebe561c6df650ee4 (diff) |
strace: fix compile issue on c-sky
Signed-off-by: Waldemar Brodkorb <wbx@openadk.org>
Diffstat (limited to 'package/strace/patches')
-rw-r--r-- | package/strace/patches/patch-src_stage_output_c | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/package/strace/patches/patch-src_stage_output_c b/package/strace/patches/patch-src_stage_output_c new file mode 100644 index 000000000..0762e4a6c --- /dev/null +++ b/package/strace/patches/patch-src_stage_output_c @@ -0,0 +1,20 @@ +--- 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; |