forked from Lainports/freebsd-ports
- Update www/libxul to 10.0.7 - Update all dependent ports to use www/libxul19 (no functional changes) - Bump PORTREVISION on ports where libxul is a run dependency as the resulting package will change. Submitted by: Jan Beich <jbeich@tormail.org> With hat: gecko
28 lines
641 B
Text
28 lines
641 B
Text
--- gfx/ycbcr/Makefile.in
|
|
+++ 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)))
|