mirror of
https://git.freebsd.org/ports.git
synced 2025-07-13 23:39:20 -04:00
Changes: https://github.com/libass/libass/releases/tag/0.14.0 ABI: https://abi-laboratory.pro/tracker/timeline/libass/
17 lines
833 B
Text
17 lines
833 B
Text
--- configure.ac.orig 2017-10-31 12:55:50 UTC
|
|
+++ configure.ac
|
|
@@ -87,7 +87,13 @@ AS_IF([test x$enable_asm != xno], [
|
|
[*darwin*], [
|
|
ASFLAGS="$ASFLAGS -f macho$BITTYPE -DPREFIX -DHAVE_ALIGNED_STACK=1" ],
|
|
[*linux*|*dragonfly*|*bsd*|*solaris*], [
|
|
- ASFLAGS="$ASFLAGS -f elf$BITTYPE -DHAVE_ALIGNED_STACK=1" ],
|
|
+ ASFLAGS="$ASFLAGS -f elf$BITTYPE"
|
|
+ AS_IF([test x$BITS = x64], [
|
|
+ ASFLAGS="$ASFLAGS -DHAVE_ALIGNED_STACK=1"
|
|
+ ], [
|
|
+ ASFLAGS="$ASFLAGS -DHAVE_ALIGNED_STACK=0"
|
|
+ ])
|
|
+ ],
|
|
[*cygwin*|*mingw*], [
|
|
ASFLAGS="$ASFLAGS -f win$BITTYPE"
|
|
AS_IF([test x$BITS = x64], [
|