diff options
Diffstat (limited to 'www/libxul/files/patch-bug783463')
-rw-r--r-- | www/libxul/files/patch-bug783463 | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/www/libxul/files/patch-bug783463 b/www/libxul/files/patch-bug783463 index b27a1997c534..dedbb7003927 100644 --- a/www/libxul/files/patch-bug783463 +++ b/www/libxul/files/patch-bug783463 @@ -1,14 +1,14 @@ ---- gfx/skia/Makefile.in~ -+++ gfx/skia/Makefile.in -@@ -339,10 +339,9 @@ CPPSRCS += \ - SkMMapStream.cpp \ - SkOSFile.cpp \ - $(NULL) --ifeq (Linux,$(OS_TARGET)) -+ifneq (,$(or $(MOZ_X11),$(filter Linux,$(OS_TARGET)))) - CPPSRCS += \ - SkFontHost_linux.cpp \ -- SkFontHost_tables.cpp \ - SkTime_Unix.cpp \ - $(NULL) - endif +--- gfx/skia/moz.build~ ++++ gfx/skia/moz.build +@@ -188,10 +188,9 @@ elif CONFIG['MOZ_WIDGET_TOOLKIT'] == 'qt + 'SkMMapStream.cpp', + 'SkOSFile.cpp', + ] +- if CONFIG['OS_TARGET'] == 'Linux': ++ if CONFIG['MOZ_X11'] == 1 or CONFIG['OS_TARGET'] == 'Linux': + CPP_SOURCES += [ + 'SkFontHost_linux.cpp', +- 'SkFontHost_tables.cpp', + 'SkThread_pthread.cpp', + 'SkTime_Unix.cpp', + ] |