2011-06-24 21:41:16 +04:00
|
|
|
#
|
2012-05-21 15:12:37 +04:00
|
|
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
2011-06-24 21:41:16 +04:00
|
|
|
|
2013-06-11 21:40:27 +04:00
|
|
|
ifeq ($(MOZ_WIDGET_TOOLKIT),$(findstring $(MOZ_WIDGET_TOOLKIT),android gtk2 gtk3 gonk qt))
|
2013-06-05 21:48:59 +04:00
|
|
|
OS_CXXFLAGS += $(CAIRO_FT_CFLAGS)
|
2012-05-17 02:30:10 +04:00
|
|
|
endif
|
|
|
|
|
2012-05-10 08:31:14 +04:00
|
|
|
include $(topsrcdir)/config/rules.mk
|
2012-08-23 23:36:04 +04:00
|
|
|
|
|
|
|
# Due to bug 796023, we can't have -DUNICODE and -D_UNICODE; defining those
|
|
|
|
# macros changes the type of LOGFONT to LOGFONTW instead of LOGFONTA. This
|
|
|
|
# changes the symbol names of exported C++ functions that use LOGFONT.
|
|
|
|
DEFINES := $(filter-out -DUNICODE -D_UNICODE,$(DEFINES))
|
2012-05-10 08:31:14 +04:00
|
|
|
|
|
|
|
# The file uses SSE2 intrinsics, so it needs special compile flags on some
|
|
|
|
# compilers.
|
|
|
|
ifneq (,$(INTEL_ARCHITECTURE))
|
|
|
|
ifdef GNU_CC
|
|
|
|
ImageScalingSSE2.$(OBJ_SUFFIX): CXXFLAGS+=-msse2
|
2012-11-07 12:29:54 +04:00
|
|
|
BlurSSE2.$(OBJ_SUFFIX): CXXFLAGS+=-msse2
|
2013-11-27 15:22:27 +04:00
|
|
|
FilterProcessingSSE2.$(OBJ_SUFFIX): CXXFLAGS+=-msse2
|
2012-05-10 08:31:14 +04:00
|
|
|
endif
|
|
|
|
|
|
|
|
ifdef SOLARIS_SUNPRO_CXX
|
|
|
|
ImageScalingSSE2.$(OBJ_SUFFIX): OS_CXXFLAGS += -xarch=sse2 -xO4
|
2012-11-07 12:29:54 +04:00
|
|
|
BlurSSE2.$(OBJ_SUFFIX): OS_CXXFLAGS += -xarch=sse2 -xO4
|
2013-11-27 15:22:27 +04:00
|
|
|
FilterProcessingSSE2.$(OBJ_SUFFIX): OS_CXXFLAGS += -xarch=sse2 -xO4
|
2012-05-10 08:31:14 +04:00
|
|
|
endif
|
|
|
|
endif
|
2012-05-08 06:40:13 +04:00
|
|
|
|
2013-12-10 19:37:03 +04:00
|
|
|
CXXFLAGS += $(MOZ_CAIRO_CFLAGS)
|