Bug 1429830 - Enable TFO is a cross-compiler is used.r=nwgh

This commit is contained in:
Dragana Damjanovic 2018-01-11 23:17:44 +01:00
Родитель 53c1edf299
Коммит 2dce8cd834
2 изменённых файлов: 10 добавлений и 2 удалений

6
config/external/nspr/pr/moz.build поставляемый
Просмотреть файл

@ -40,7 +40,11 @@ elif CONFIG['OS_TARGET'] in ('FreeBSD', 'OpenBSD', 'NetBSD'):
SOURCES += ['/nsprpub/pr/src/md/unix/%s.c' % CONFIG['OS_TARGET'].lower()]
elif CONFIG['OS_TARGET'] == 'Darwin':
OS_LIBS += ['-framework CoreServices']
if CONFIG['HOST_MAJOR_VERSION'] >= '15':
if not CONFIG['HOST_MAJOR_VERSION']:
DEFINES.update(
HAS_CONNECTX=True,
)
elif CONFIG['HOST_MAJOR_VERSION'] >= '15':
DEFINES.update(
HAS_CONNECTX=True,
)

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

@ -135,7 +135,11 @@ EXTRA_COMPONENTS += [
]
if CONFIG['OS_TARGET'] == 'Darwin':
if CONFIG['HOST_MAJOR_VERSION'] >= '15':
if not CONFIG['HOST_MAJOR_VERSION']:
DEFINES.update(
HAS_CONNECTX=True,
)
elif CONFIG['HOST_MAJOR_VERSION'] >= '15':
DEFINES.update(
HAS_CONNECTX=True,
)