Bug 569475 - Fix qcms linking failure on mingw-w64. r=jmuizelaar

--HG--
extra : rebase_source : 07a082564d002faeaedc4fb57911ec9d64b605fd
This commit is contained in:
Jacek Caban 2010-06-07 10:16:22 +02:00
Родитель 34449d0ae4
Коммит 425f7b166a
1 изменённых файлов: 6 добавлений и 3 удалений

Просмотреть файл

@ -16,10 +16,13 @@ EXPORTS = qcms.h qcmstypes.h
CSRCS = iccread.c transform.c
ifeq (86,$(findstring 86,$(OS_TEST)))
ifeq ($(OS_ARCH)_$(OS_TEST),WINNT_x86_64)
CSRCS += transform-sse2.c
CSRCS += transform-sse2.c
ifdef _MSC_VER
ifneq ($(OS_ARCH)_$(OS_TEST),WINNT_x86_64)
CSRCS += transform-sse1.c
endif
else
CSRCS += transform-sse2.c transform-sse1.c
CSRCS += transform-sse1.c
ifdef GNU_CC
SSE1_FLAGS=-msse
SSE2_FLAGS=-msse2