summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSean McGovern <gseanmcg@gmail.com>2016-03-09 19:41:06 -0500
committerSean McGovern <gseanmcg@gmail.com>2016-03-09 19:42:00 -0500
commit62dba758ea64d9819d0021f1d6c9cbb9369d63b1 (patch)
tree7c96bf52560ea643f72c168b405597ff4c0c8755
parent790210f4ed8ecc8461b1550ef9b58c1045001e28 (diff)
downloadlibass-62dba758ea64d9819d0021f1d6c9cbb9369d63b1.tar.bz2
libass-62dba758ea64d9819d0021f1d6c9cbb9369d63b1.tar.xz
configure: use correct ASFLAGS for yasm on Solaris
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 22ad103..0861d2b 100644
--- a/configure.ac
+++ b/configure.ac
@@ -78,7 +78,7 @@ AS_IF([test x$enable_asm != xno], [
AS_CASE([$host],
[*darwin*], [
ASFLAGS="$ASFLAGS -f macho$BITS -DPREFIX -DHAVE_ALIGNED_STACK=1" ],
- [*linux*|*dragonfly*|*bsd*], [
+ [*linux*|*dragonfly*|*bsd*|*solaris*], [
ASFLAGS="$ASFLAGS -f elf -DHAVE_ALIGNED_STACK=1" ],
[*cygwin*|*mingw*], [
ASFLAGS="$ASFLAGS -f win$BITS"