summaryrefslogtreecommitdiffstats
path: root/deps/mlt/patches/mlt_glibc226.patch
blob: 255a604870e244dbff52a25a65e34b127bde5559 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
From 2377c8665f93f87aa86fabbfd8e596572aacdf6c Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Andreas=20M=C3=BCller?= <schnitzeltony@googlemail.com>
Date: Mon, 7 Aug 2017 18:41:07 +0200
Subject: [PATCH] mlt_property.h: Replace include xlocale.h by locale.h
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

xlocale.h was removed in glibc 2.26

Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com>
---
 src/framework/mlt_property.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/framework/mlt_property.h b/src/framework/mlt_property.h
index 404d513f..156e0734 100644
--- a/src/framework/mlt_property.h
+++ b/src/framework/mlt_property.h
@@ -31,7 +31,7 @@
 #endif
 
 #if defined(__GLIBC__) || defined(__APPLE__) || (__FreeBSD_version >= 900506)
-#include <xlocale.h>
+#include <locale.h>
 #else
 typedef char* locale_t;
 #endif