summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorOleg Oshmyan <chortos@inbox.lv>2021-09-18 23:28:30 +0300
committerOleg Oshmyan <chortos@inbox.lv>2022-02-12 19:40:24 +0200
commitc809820d6d24192e61f53702c9e13ed6b7f13a48 (patch)
tree3aded6f7b3d2bcb75e873ed4f87ea4177415430a
parentfe7abffb6f5ad4658e5421ed71696b58c5d582a8 (diff)
downloadlibass-c809820d6d24192e61f53702c9e13ed6b7f13a48.tar.bz2
libass-c809820d6d24192e61f53702c9e13ed6b7f13a48.tar.xz
configure: drop disused Automake conditional for 32-bit x86
It was used when we had ASFLAGS logic in Makefile.am, but all ASFLAGS logic has been consolidated in configure.ac and we have not used this conditional ever since. Unlike the conditional flagging x86-64, which can be used for building x86-64-only assembler files, it does not seem that the 32-bit conditional will ever be useful again.
-rw-r--r--configure.ac2
1 files changed, 0 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac
index cf9b0b1..c84a260 100644
--- a/configure.ac
+++ b/configure.ac
@@ -216,7 +216,6 @@ AS_IF([test "x$enable_asm" != xno], [
[i?86-*], [
INTEL=true
AS=nasm
- X86=true
BITS=32
BITTYPE=32
ASFLAGS="$ASFLAGS -DARCH_X86_64=0"
@@ -308,7 +307,6 @@ AC_SUBST([PKG_REQUIRES_PRIVATE], [${pkg_requires}])
## Setup conditionals for use in Makefiles
AM_CONDITIONAL([ASM], [test "x$can_asm" = xtrue])
AM_CONDITIONAL([INTEL], [test "x$INTEL" = xtrue])
-AM_CONDITIONAL([X86], [test "x$X86" = xtrue])
AM_CONDITIONAL([X64], [test "x$X64" = xtrue])
AM_CONDITIONAL([ENABLE_LARGE_TILES], [test "x$enable_large_tiles" = xyes])