package/libtheora: fix build on arm big-endian

Buildroot commit 5e769b87ec bumped
libtheora to version 1.2.0 and forgot to disable asm on arm big-endian
as well.

Fixes:
https://autobuild.buildroot.net/results/8af/8af9ce8c03b00da2dcf29bc1c6f4afef9a002a58/

arm/armint.h:24:5: error: #error "Big-endian configurations are not
 supported by the ARM asm. " "Reconfigure with --disable-asm or undefine
 OC_ARM_ASM."

Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
Signed-off-by: Julien Olivain <ju.o@free.fr>
This commit is contained in:
Bernd Kuhls
2025-10-21 21:54:16 +02:00
committed by Julien Olivain
parent 5c5a28e461
commit 0268d7deec
+1 -1
View File
@@ -22,7 +22,7 @@ LIBTHEORA_CONF_OPTS = \
# assembly code on arm is broken:
# https://gitlab.xiph.org/xiph/theora/-/merge_requests/53
ifeq ($(BR2_arm),y)
ifeq ($(BR2_arm)$(BR2_armeb),y)
LIBTHEORA_CONF_OPTS += --disable-asm
endif