summaryrefslogtreecommitdiffstats
path: root/meta/recipes-core/gettext/gettext-0.20.1
diff options
context:
space:
mode:
authorKhem Raj <raj.khem@gmail.com>2020-01-20 09:52:26 -0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2020-01-21 12:52:53 +0000
commitdfa69259b9d7c1f23c592799230d4d338bc9af57 (patch)
tree872412116a9950195bcd2f8d0258bbc757a19ffe /meta/recipes-core/gettext/gettext-0.20.1
parentdd2862668a86db5fccec51f74afc7e4dc85a3eac (diff)
downloadpoky-dfa69259b9d7c1f23c592799230d4d338bc9af57.tar.gz
gettext: Fix overloadable error with clang
Clang detects that getcwd is being re-declared and signatures don't match, simple solution is to let clang use overloadable attribute (From OE-Core rev: d32626c3c5b034b72495c2949b3e94ca55f04a9b) Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-core/gettext/gettext-0.20.1')
-rw-r--r--meta/recipes-core/gettext/gettext-0.20.1/overloadable.patch22
1 files changed, 22 insertions, 0 deletions
diff --git a/meta/recipes-core/gettext/gettext-0.20.1/overloadable.patch b/meta/recipes-core/gettext/gettext-0.20.1/overloadable.patch
new file mode 100644
index 0000000000..1b41cb464e
--- /dev/null
+++ b/meta/recipes-core/gettext/gettext-0.20.1/overloadable.patch
@@ -0,0 +1,22 @@
1Use overloadable attribute to aid clang
2
3Fixes
4dcigettext.c:147:7: error: redeclaration of 'getcwd' must have the 'overloadable' attribute
5
6Upstream-Status: Pending
7Signed-off-by: Khem Raj <raj.khem@gmail.com>
8--- a/gettext-runtime/intl/dcigettext.c
9+++ b/gettext-runtime/intl/dcigettext.c
10@@ -144,7 +144,11 @@ char *getwd ();
11 # if VMS
12 # define getcwd(buf, max) (getcwd) (buf, max, 0)
13 # else
14-char *getcwd ();
15+char
16+#ifdef __clang__
17+__attribute__((overloadable))
18+#endif
19+*getcwd ();
20 # endif
21 # endif
22 # ifndef HAVE_STPCPY