View | Details | Raw Unified | Return to bug 196846
Collapse All | Expand All

(-)Makefile (+5 lines)
Lines 93-98 CONFIGURE_ARGS+= --enable-x11grab Link Here
93
93
94
.include <bsd.port.pre.mk>
94
.include <bsd.port.pre.mk>
95
95
96
.if ${ARCH} == armv6
97
CONFIGURE_ENV+=	ASFLAGS=-no-integrated-as
98
CFLAGS=	-no-integrated-as
99
.endif
100
96
CONFIGURE_ENV+=	COMPILER_PATH=${LOCALBASE}/bin
101
CONFIGURE_ENV+=	COMPILER_PATH=${LOCALBASE}/bin
97
MAKE_ENV+=	COMPILER_PATH=${LOCALBASE}/bin
102
MAKE_ENV+=	COMPILER_PATH=${LOCALBASE}/bin
98
103
(-)files/patch-libavcodec_arm_asm.S (+25 lines)
Added Link Here
1
--- libavcodec/arm/asm.S.orig	2013-10-06 16:18:07 UTC
2
+++ libavcodec/arm/asm.S
3
@@ -26,6 +26,22 @@
4
 #   define ELF @
5
 #endif
6
 
7
+#if   HAVE_NEON
8
+        .arch           armv7-a
9
+#elif HAVE_ARMV6T2
10
+        .arch           armv6t2
11
+#elif HAVE_ARMV6
12
+        .arch           armv6
13
+#elif HAVE_ARMV5TE
14
+        .arch           armv5te
15
+#endif
16
+
17
+#if   HAVE_NEON
18
+        .fpu            neon
19
+#elif HAVE_ARMVFP
20
+        .fpu            vfp
21
+#endif
22
+
23
         .syntax unified
24
 
25
 .macro  require8 val=1

Return to bug 196846