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

(-)multimedia/libass/files/patch-configure.ac (+16 lines)
Line 0 Link Here
1
--- configure.ac.orig	2017-02-05 22:41:56 UTC
2
+++ configure.ac
3
@@ -79,7 +79,12 @@ AS_IF([test x$enable_asm != xno], [
4
         [*darwin*], [
5
             ASFLAGS="$ASFLAGS -f macho$BITS -DPREFIX -DHAVE_ALIGNED_STACK=1" ],
6
         [*linux*|*dragonfly*|*bsd*|*solaris*], [
7
-            ASFLAGS="$ASFLAGS -f elf -DHAVE_ALIGNED_STACK=1" ],
8
+            AS_IF([test x$BITS = x64], [
9
+                ASFLAGS="$ASFLAGS -f elf -DHAVE_ALIGNED_STACK=1"
10
+            ], [
11
+                ASFLAGS="$ASFLAGS -f elf -DHAVE_ALIGNED_STACK=0"
12
+            ])
13
+        ],
14
         [*cygwin*|*mingw*], [
15
             ASFLAGS="$ASFLAGS -f win$BITS"
16
             AS_IF([test x$BITS = x64], [

Return to bug 216837