blob: bf6c28297222951d991e89f3acf868c768e23607 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
--- gfx/ycbcr/Makefile.in~
+++ gfx/ycbcr/Makefile.in
@@ -58,6 +58,10 @@ ifeq ($(OS_ARCH),Linux)
CPPSRCS += yuv_row_posix.cpp \
$(NULL)
else
+ifeq ($(OS_ARCH),FreeBSD)
+CPPSRCS += yuv_row_posix.cpp \
+ $(NULL)
+else
ifeq ($(OS_ARCH),SunOS)
CPPSRCS += yuv_row_posix.cpp \
$(NULL)
@@ -70,6 +74,7 @@ CPPSRCS += yuv_row_other.cpp \
$(NULL)
endif # Darwin
endif # SunOS
+endif # FreeBSD
endif # linux
endif # windows
|