Bug 474937 - Fix Windows crashes with video element caused by buggy mmx/sse optimisations - rs=roc

This commit is contained in:
Chris Double 2009-01-26 00:03:26 +13:00
parent 1ad9c9b132
commit 567ba71782

View File

@ -48,10 +48,12 @@ FORCE_STATIC_LIB= 1
DEFINES += -DTHEORA_DISABLE_ENCODE
ifeq ($(findstring 86,$(OS_TEST)), 86)
ifneq ($(OS_ARCH),WINNT)
ifneq ($(OS_ARCH),SunOS)
DEFINES += -DOC_X86ASM -DUSE_ASM
endif
endif
endif
VPATH := $(srcdir) $(srcdir)/dec
@ -73,17 +75,6 @@ CSRCS = \
$(NULL)
ifeq ($(findstring 86,$(OS_TEST)), 86)
ifeq ($(OS_ARCH),WINNT)
VPATH += $(srcdir)/dec/x86_vc
CSRCS += \
mmxfrag.c \
mmxloopfilter.c \
x86state.c \
mmxstate.c \
mmxidct.c \
$(NULL)
else
VPATH += $(srcdir)/dec/x86
CSRCS += \
@ -93,7 +84,6 @@ CSRCS += \
mmxidct.c \
$(NULL)
endif
endif
include $(topsrcdir)/config/rules.mk