diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2022-12-15 20:26:25 +0100 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2022-12-15 20:26:41 +0100 |
commit | 4de568226692354d200fb2d1434099d79dd27b24 (patch) | |
tree | 16655910215cd8fa9137939b5067b3fc254351b2 /media-libs/mlt/files | |
parent | media-libs/taglib: drop 1.12 (diff) | |
download | gentoo-4de568226692354d200fb2d1434099d79dd27b24.tar.gz gentoo-4de568226692354d200fb2d1434099d79dd27b24.tar.bz2 gentoo-4de568226692354d200fb2d1434099d79dd27b24.zip |
media-libs/mlt: drop 7.8.0
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'media-libs/mlt/files')
-rw-r--r-- | media-libs/mlt/files/mlt-7.8.0-linux_locale_h.patch | 37 |
1 files changed, 0 insertions, 37 deletions
diff --git a/media-libs/mlt/files/mlt-7.8.0-linux_locale_h.patch b/media-libs/mlt/files/mlt-7.8.0-linux_locale_h.patch deleted file mode 100644 index 43822c446654..000000000000 --- a/media-libs/mlt/files/mlt-7.8.0-linux_locale_h.patch +++ /dev/null @@ -1,37 +0,0 @@ -From 7d82553a00e74af77e69cc74645e0a3ec6bb3aa1 Mon Sep 17 00:00:00 2001 -From: alfredfo <98554039+alfredfo@users.noreply.github.com> -Date: Sat, 25 Jun 2022 01:00:11 +0000 -Subject: [PATCH] Fix building for musl (#803) - -reverts: https://github.com/mltframework/mlt/pull/298. -There is no gurantee that either HAVE_STRTOD_L or HAVE_LOCALE_H will be -defined at compile-time. Try for example building this project :) - -The locale usage is now defined in POSIX and therefore we can now -assume it will be available on Linux, except for ancient systems. -https://pubs.opengroup.org/onlinepubs/9699919799/basedefs/locale.h.html - -Another way of dealing with this would be to have a global mlt_config.h -where HAVE_LOCALE_H and HAVE_STRTOD_L are defined to values determined -when mlt is installed. - -https://git.alpinelinux.org/aports/tree/community/mlt/musl-locale.patch -https://bugs.gentoo.org/829608 -https://github.com/mltframework/mlt/pull/803 ---- - 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 85d550ac0..be61c23c2 100644 ---- a/src/framework/mlt_property.h -+++ b/src/framework/mlt_property.h -@@ -30,7 +30,7 @@ - #include <sys/param.h> - #endif - --#if (defined(__GLIBC__) && !defined(__APPLE__)) || defined(HAVE_LOCALE_H) -+#if (defined(__linux__) && !defined(__APPLE__)) - # include <locale.h> - #elif defined(__APPLE__) || (defined(__FreeBSD_version) && __FreeBSD_version >= 900506) - # include <xlocale.h> |