diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2018-05-15 13:16:08 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2018-05-15 13:16:08 +0000 |
commit | c96ade24bf43dff6e34a2351c6f0d18070a6807a (patch) | |
tree | 0a1b49612915eabe3dfb6fd8a4abb20a1d5ecefc /community/vlc/fix-missing-asm.S-for-arm.patch | |
parent | 4637ce754d3fedd6906307cd327e7569f5673126 (diff) | |
download | aports-c96ade24bf43dff6e34a2351c6f0d18070a6807a.tar.bz2 aports-c96ade24bf43dff6e34a2351c6f0d18070a6807a.tar.xz |
community/vlc: upgrade to 3.0.2
Diffstat (limited to 'community/vlc/fix-missing-asm.S-for-arm.patch')
-rw-r--r-- | community/vlc/fix-missing-asm.S-for-arm.patch | 45 |
1 files changed, 0 insertions, 45 deletions
diff --git a/community/vlc/fix-missing-asm.S-for-arm.patch b/community/vlc/fix-missing-asm.S-for-arm.patch deleted file mode 100644 index 5b363fa1e9..0000000000 --- a/community/vlc/fix-missing-asm.S-for-arm.patch +++ /dev/null @@ -1,45 +0,0 @@ -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 |