blob: ed30d515af31415f70b039e7191b8157d03fa1ec (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
--- mozilla/gfx/ycbcr/Makefile.in
+++ mozilla/gfx/ycbcr/Makefile.in
@@ -54,23 +54,13 @@ CPPSRCS += yuv_row_win.cpp \
$(NULL)
endif
else
-ifeq ($(OS_ARCH),Linux)
-CPPSRCS += yuv_row_posix.cpp \
- $(NULL)
-else
-ifeq ($(OS_ARCH),SunOS)
-CPPSRCS += yuv_row_posix.cpp \
- $(NULL)
-else
-ifeq ($(OS_ARCH),Darwin)
+ifneq (,$(filter Linux SunOS Darwin DragonFly FreeBSD NetBSD OpenBSD, $(OS_ARCH)))
CPPSRCS += yuv_row_posix.cpp \
$(NULL)
else
CPPSRCS += yuv_row_other.cpp \
$(NULL)
-endif # Darwin
-endif # SunOS
-endif # linux
+endif # posix
endif # windows
ifeq (arm,$(findstring arm,$(OS_TEST)))
|