Bug 561412 - new yuv -> rgb conversion code assumes GTK=linux. r=roc

This commit is contained in:
Hanspeter Niederstrasser 2010-05-02 14:20:40 +02:00
Родитель 09bdf2850f
Коммит 2bc8d85dbd
1 изменённых файлов: 5 добавлений и 5 удалений

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

@ -25,19 +25,19 @@ ifdef _MSC_VER
CPPSRCS += yuv_row_win.cpp \
$(NULL)
else
ifeq ($(MOZ_WIDGET_TOOLKIT),gtk2)
ifeq ($(OS_ARCH),Linux)
CPPSRCS += yuv_row_linux.cpp \
$(NULL)
else
ifeq ($(MOZ_WIDGET_TOOLKIT),cocoa)
ifeq ($(OS_ARCH),Darwin)
CPPSRCS += yuv_row_mac.cpp \
$(NULL)
else
CPPSRCS += yuv_row_other.cpp \
$(NULL)
endif
endif
endif
endif # mac
endif # linux
endif # windows
EXTRA_DSO_LDOPTS += \
$(LIBS_DIR) \