summaryrefslogtreecommitdiffstats
path: root/testing/mlt/musl-locale.patch
diff options
context:
space:
mode:
authorCarlo Landmeter <clandmeter@gmail.com>2016-11-06 00:45:44 +0100
committerCarlo Landmeter <clandmeter@gmail.com>2016-11-06 00:46:38 +0100
commitd02611584d4b2f693469c72272fe369413139394 (patch)
treec93790394c24fa8248ac8da610bbd1fadc962049 /testing/mlt/musl-locale.patch
parent27be6a5522c455a6bb5ddabe2b3dbdc6d0037580 (diff)
testing/mlt: new aport
Diffstat (limited to 'testing/mlt/musl-locale.patch')
-rw-r--r--testing/mlt/musl-locale.patch13
1 files changed, 13 insertions, 0 deletions
diff --git a/testing/mlt/musl-locale.patch b/testing/mlt/musl-locale.patch
new file mode 100644
index 00000000000..030bb781d14
--- /dev/null
+++ b/testing/mlt/musl-locale.patch
@@ -0,0 +1,13 @@
+--- ./src/framework/mlt_property.h.orig
++++ ./src/framework/mlt_property.h
+@@ -30,8 +30,8 @@
+ #include <sys/param.h>
+ #endif
+
+-#if defined(__GLIBC__) || defined(__APPLE__) || (__FreeBSD_version >= 900506)
+-#include <xlocale.h>
++#if defined(__linux__) || defined(__APPLE__) || (__FreeBSD_version >= 900506)
++#include <locale.h>
+ #else
+ typedef char* locale_t;
+ #endif