Browse Source

Remove x86-specific compile options for Theora

Turns out they're unsupported.
Miku AuahDark 4 years ago
parent
commit
552376fc7a
1 changed files with 0 additions and 24 deletions
  1. 0 24
      love/src/jni/libtheora-1.2.0alpha1/Android.mk

+ 0 - 24
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)