Bug 1833064 - Add icu headers needed for TimezoneDatabase.cpp to system headers. r=leftmostcat

Adding these two headers to the system headers list fixes a compile error when
building with --with-system-icu. Calendar functionality will be broken however
due to bug 1790071 (the upstream bug remains unfixed).

Differential Revision: https://phabricator.services.mozilla.com/D178379

--HG--
extra : moz-landing-system : lando
This commit is contained in:
Rob Lemley 2023-05-19 16:09:53 +00:00
Родитель 81eb33b349
Коммит 6cde43d643
1 изменённых файлов: 6 добавлений и 0 удалений

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

@ -10,3 +10,9 @@
# 'file1.h',
# 'file2.h',
# ]
if CONFIG["MOZ_SYSTEM_ICU"]:
system_headers += [
"unicode/strenum.h",
"unicode/vtzone.h",
]