Bug 776077 - Silence hundreds of conversion errors in cairo; r=jmuizelaar

Cairo is a 3rd party project and we decided in bug that silencing the
warnings was easier than patching.

--HG--
extra : rebase_source : aa7a22b208e62d0d84d1b4a6e5c58d366d957bb9
This commit is contained in:
Gregory Szorc 2012-08-20 14:04:42 -07:00
Родитель 645ef1e623
Коммит 91c0c766a9
1 изменённых файлов: 4 добавлений и 1 удалений

Просмотреть файл

@ -210,9 +210,12 @@ FORCE_STATIC_LIB = 1
include $(topsrcdir)/config/rules.mk
# Disable spammy "missing initializer" GCC warning
ifdef GNU_CC
# Disable spammy "missing initializer" GCC warning
CFLAGS += -Wno-missing-field-initializers
# Disable spammy "implicit conversion from enumeration type 'cairo_" warnings.
CFLAGS += -Wno-conversion
endif # GNU_CC
DEFINES += -DPACKAGE_VERSION="\"moz\"" -DPACKAGE_BUGREPORT="\"http://bugzilla.mozilla.org/\""