summaryrefslogtreecommitdiff
path: root/packages/strace/4.19/100-conflicting-decl.patch
diff options
context:
space:
mode:
authorAlexey Neyman <stilor@att.net>2017-12-02 23:30:38 (GMT)
committerGitHub <noreply@github.com>2017-12-02 23:30:38 (GMT)
commitd917a29865876b913fe2939ee2a0728145e8543a (patch)
tree4e048ed57988306696efa3c5b81a80d48030e913 /packages/strace/4.19/100-conflicting-decl.patch
parente832b9b220f90b11b893e2815ceb37ec2b708683 (diff)
parent98bc4decdeab1361bdc585c86591718fb08c8ffb (diff)
Merge pull request #874 from stilor/renumber-update-patches
Renumber & update patches
Diffstat (limited to 'packages/strace/4.19/100-conflicting-decl.patch')
-rw-r--r--packages/strace/4.19/100-conflicting-decl.patch34
1 files changed, 0 insertions, 34 deletions
diff --git a/packages/strace/4.19/100-conflicting-decl.patch b/packages/strace/4.19/100-conflicting-decl.patch
deleted file mode 100644
index 992eac8..0000000
--- a/packages/strace/4.19/100-conflicting-decl.patch
+++ /dev/null
@@ -1,34 +0,0 @@
-commit d45f27147f7d95eb209463dc03dc039ea3f15b59
-Author: Baruch Siach <baruch@tkos.co.il>
-Date: Fri Sep 8 12:12:57 2017 +0300
-
- error_prints: fix potential program_invocation_name type conflict
-
- uClibc-ng declares program_invocation_name as const.
- This causes the build failure below:
-
- error_prints.c:40:14: error: conflicting types for ‘program_invocation_name’
- extern char *program_invocation_name;
- ^~~~~~~~~~~~~~~~~~~~~~~
- In file included from error_prints.c:32:0:
- .../output/host/x86_64-buildroot-linux-uclibc/sysroot/usr/include/errno.h:54:20: note: previous declaration of ‘program_invocation_name’ was here
- extern const char *program_invocation_name, *program_invocation_short_name;
- ^~~~~~~~~~~~~~~~~~~~~~~
-
- * error_prints.c (program_invocation_name): Declare only in case
- of [!HAVE_PROGRAM_INVOCATION_NAME].
-
-diff --git a/error_prints.c b/error_prints.c
-index 8519b924..710e99b0 100644
---- a/error_prints.c
-+++ b/error_prints.c
-@@ -37,7 +37,9 @@
-
- #include "error_prints.h"
-
-+#ifndef HAVE_PROGRAM_INVOCATION_NAME
- extern char *program_invocation_name;
-+#endif
-
- static void
- verror_msg(int err_no, const char *fmt, va_list p)