summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorOneric <oneric@oneric.stub>2024-04-14 21:42:04 +0200
committerOneric <oneric@oneric.stub>2024-04-14 23:44:58 +0200
commit17cb8da964c852835881658d0d7af35ef2d92f9e (patch)
tree69d2a6dff3fc0f988d7bde298efd472c45540da4
parent6eaa67daabdba10248fd13692403691effec0d8e (diff)
downloadlibass-17cb8da964c852835881658d0d7af35ef2d92f9e.tar.bz2
libass-17cb8da964c852835881658d0d7af35ef2d92f9e.tar.xz
cosmetic/configure: consistently use aarch64
We already used aarch64 everywhere (am conditionals, macros, filepaths) except for this one config-internal cpufamily variable.
-rw-r--r--configure.ac6
1 files changed, 3 insertions, 3 deletions
diff --git a/configure.ac b/configure.ac
index c616f3a..e7381c6 100644
--- a/configure.ac
+++ b/configure.ac
@@ -260,7 +260,7 @@ AS_IF([test "x$enable_asm" != xno], [
ASFLAGS="$ASFLAGS -DARCH_X86_64=1"
],
[aarch64-*|aarch64_be-*], [
- cpu_family="arm64"
+ cpu_family="aarch64"
BITS=64
BITTYPE=64
],
@@ -316,7 +316,7 @@ AS_IF([test "x$enable_asm" != xno], [
rm conftest.asm conftest.o > /dev/null 2>&1
])
],
- [arm64], [
+ [aarch64], [
AS_CASE([$host],
[*darwin*], [
CCASFLAGS="$CCASFLAGS -DPREFIX"
@@ -356,7 +356,7 @@ AS_IF([test "x$enable_shared" != xno], [
AM_CONDITIONAL([ASM], [test "x$can_asm" = xtrue])
AM_CONDITIONAL([X86], [test "x$cpu_family" = xx86])
AM_CONDITIONAL([X86_64], [test "x$cpu_family" = xx86 && test "x$BITS" = x64])
-AM_CONDITIONAL([AARCH64], [test "x$cpu_family" = xarm64])
+AM_CONDITIONAL([AARCH64], [test "x$cpu_family" = xaarch64])
AM_CONDITIONAL([ENABLE_LARGE_TILES], [test "x$enable_large_tiles" = xyes])