From 552376fc7ad312f252d52ce1aa62f20342cd2124 Mon Sep 17 00:00:00 2001 From: Miku AuahDark Date: Sun, 9 May 2021 16:31:18 +0800 Subject: [PATCH] Remove x86-specific compile options for Theora Turns out they're unsupported. --- love/src/jni/libtheora-1.2.0alpha1/Android.mk | 24 ------------------- 1 file changed, 24 deletions(-) diff --git a/love/src/jni/libtheora-1.2.0alpha1/Android.mk b/love/src/jni/libtheora-1.2.0alpha1/Android.mk index ccaa2d50..1e4b6a69 100644 --- a/love/src/jni/libtheora-1.2.0alpha1/Android.mk +++ b/love/src/jni/libtheora-1.2.0alpha1/Android.mk @@ -27,30 +27,6 @@ LOCAL_SRC_FILES := \ LOCAL_ARM_NEON := true -# Target conditionals -# It seems unfortunate that ARM codepath can't be used in here. -ifeq ($(TARGET_ARCH_ABI),x86) - # Defines for x86. UNTESTED! - LOCAL_CFLAGS += -DOC_X86_ASM - LOCAL_SRC_FILES += \ - lib/x86/x86cpu.c \ - lib/x86/mmxidct.c \ - lib/x86/mmxfrag.c \ - lib/x86/mmxstate.c \ - lib/x86/sse2idct.c \ - lib/x86/x86state.c -else ifeq ($(TARGET_ARCH_ABI),x86_64) - # Defines for x86-64. UNTESTED! - LOCAL_CFLAGS += -DOC_X86_ASM -DOC_X86_64_ASM - LOCAL_SRC_FILES += \ - lib/x86/x86cpu.c \ - lib/x86/mmxidct.c \ - lib/x86/mmxfrag.c \ - lib/x86/mmxstate.c \ - lib/x86/sse2idct.c \ - lib/x86/x86state.c -endif - LOCAL_STATIC_LIBRARIES := libogg include $(BUILD_STATIC_LIBRARY)