summaryrefslogtreecommitdiffstats
path: root/meta/recipes-core/gettext/gettext-0.20.1/overloadable.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-core/gettext/gettext-0.20.1/overloadable.patch')
-rw-r--r--meta/recipes-core/gettext/gettext-0.20.1/overloadable.patch22
1 files changed, 0 insertions, 22 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
deleted file mode 100644
index 1b41cb464e..0000000000
--- a/meta/recipes-core/gettext/gettext-0.20.1/overloadable.patch
+++ /dev/null
@@ -1,22 +0,0 @@
-Use overloadable attribute to aid clang
-
-Fixes
-dcigettext.c:147:7: error: redeclaration of 'getcwd' must have the 'overloadable' attribute
-
-Upstream-Status: Pending
-Signed-off-by: Khem Raj <raj.khem@gmail.com>
---- a/gettext-runtime/intl/dcigettext.c
-+++ b/gettext-runtime/intl/dcigettext.c
-@@ -144,7 +144,11 @@ char *getwd ();
- # if VMS
- # define getcwd(buf, max) (getcwd) (buf, max, 0)
- # else
--char *getcwd ();
-+char
-+#ifdef __clang__
-+__attribute__((overloadable))
-+#endif
-+*getcwd ();
- # endif
- # endif
- # ifndef HAVE_STPCPY