mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-02-08 07:53:54 +00:00
Bug 501877 - Don't define USE_ASM on Windows x64. r=chris.double
This commit is contained in:
parent
6f000a701a
commit
2a7b1131c0
@ -49,9 +49,11 @@ DEFINES += -DTHEORA_DISABLE_ENCODE
|
||||
|
||||
ifeq ($(findstring 86,$(OS_TEST)), 86)
|
||||
ifneq ($(OS_ARCH),SunOS)
|
||||
ifneq ($(OS_ARCH)$(OS_TEST),WINNTx86_64)
|
||||
DEFINES += -DOC_X86ASM -DUSE_ASM
|
||||
endif
|
||||
endif
|
||||
endif
|
||||
|
||||
VPATH := $(srcdir) $(srcdir)/dec
|
||||
|
||||
@ -74,6 +76,8 @@ CSRCS = \
|
||||
|
||||
ifeq ($(findstring 86,$(OS_TEST)), 86)
|
||||
ifeq ($(OS_ARCH),WINNT)
|
||||
ifeq (64,$(findstring 64,$(OS_TEST)))
|
||||
else
|
||||
VPATH += $(srcdir)/dec/x86_vc
|
||||
|
||||
CSRCS += \
|
||||
@ -83,6 +87,7 @@ CSRCS += \
|
||||
mmxstate.c \
|
||||
mmxidct.c \
|
||||
$(NULL)
|
||||
endif
|
||||
else
|
||||
VPATH += $(srcdir)/dec/x86
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user