diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2018-05-29 16:40:37 +0200 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2018-05-29 16:41:14 +0200 |
commit | 693736686b836589030cd38562bacf7ea492d545 (patch) | |
tree | eb4a3411020b64e16c38ea0a3981528230c13457 /media-video/vlc/files | |
parent | profiles: Drop obsolete net-libs/libmicrodns p.use.mask (diff) | |
download | gentoo-693736686b836589030cd38562bacf7ea492d545.tar.gz gentoo-693736686b836589030cd38562bacf7ea492d545.tar.bz2 gentoo-693736686b836589030cd38562bacf7ea492d545.zip |
media-video/vlc: Drop 3.0.1-r1
Package-Manager: Portage-2.3.40, Repoman-2.3.9
Diffstat (limited to 'media-video/vlc/files')
-rw-r--r-- | media-video/vlc/files/vlc-3.0.1-arm-neon-fix.patch | 65 |
1 files changed, 0 insertions, 65 deletions
diff --git a/media-video/vlc/files/vlc-3.0.1-arm-neon-fix.patch b/media-video/vlc/files/vlc-3.0.1-arm-neon-fix.patch deleted file mode 100644 index 6ea45d5abf0b..000000000000 --- a/media-video/vlc/files/vlc-3.0.1-arm-neon-fix.patch +++ /dev/null @@ -1,65 +0,0 @@ -From: Janne Grunau <janne-vlc@jannau.net> -Date: Mon, 19 Feb 2018 00:47:53 +0100 -Subject: arm: make the assembler functions compatible with non ELF/gas - platforms -MIME-Version: 1.0 -Content-Type: text/plain; charset="utf-8" -Content-Transfer-Encoding: 8bit - -Allow assembling arm neon functions for IOS and arm windows. - -Signed-off-by: Martin Storsjö <martin@martin.st> -(cherry picked from commit ec4d9649d1c03fe8f578db38b41dccdf5e11b005) -Signed-off-by: Thomas Guillem <thomas@gllm.fr> - -[Add modules/arm_neon/asm.S missing from orig tarball.] ---- - modules/arm_neon/asm.S | 39 +++++++++++++++++++++++++++++++++++++++ - 1 file changed, 39 insertions(+) - create mode 100644 modules/arm_neon/asm.S - -diff --git a/modules/arm_neon/asm.S b/modules/arm_neon/asm.S -new file mode 100644 -index 0000000..728391e ---- /dev/null -+++ b/modules/arm_neon/asm.S -@@ -0,0 +1,39 @@ -+/* -+ * Copyright (c) 2018 Janne Grunau <janne-libav@jannau.net> -+ * -+ * This program is free software; you can redistribute it and/or -+ * modify it under the terms of the GNU Lesser General Public -+ * License as published by the Free Software Foundation; either -+ * version 2.1 of the License, or (at your option) any later version. -+ * -+ * This program is distributed in the hope that it will be useful, -+ * but WITHOUT ANY WARRANTY; without even the implied warranty of -+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -+ * Lesser General Public License for more details. -+ * -+ * You should have received a copy of the GNU Lesser General Public -+ * License along with this program; if not, write to the Free Software -+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA -+ */ -+ -+#ifdef __APPLE__ -+# define EXTERN_ASM _ -+#else -+# define EXTERN_ASM -+#endif -+ -+#if defined(__APPLE__) || defined(_WIN32) -+# define HAVE_AS_ARCH_DIRECTIVE 0 -+# define HAVE_AS_FPU_DIRECTIVE 0 -+#else -+# define HAVE_AS_ARCH_DIRECTIVE 1 -+# define HAVE_AS_FPU_DIRECTIVE 1 -+#endif -+ -+.macro function name -+ .globl EXTERN_ASM\name -+#ifdef __ELF__ -+ .type EXTERN_ASM\name, %function -+#endif -+EXTERN_ASM\name: -+.endm |