diff options
Diffstat (limited to 'security/manager/ssl/osclientcerts')
-rw-r--r-- | security/manager/ssl/osclientcerts/dynamic-library/moz.build | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/security/manager/ssl/osclientcerts/dynamic-library/moz.build b/security/manager/ssl/osclientcerts/dynamic-library/moz.build index 36c0341ca7..427caad61f 100644 --- a/security/manager/ssl/osclientcerts/dynamic-library/moz.build +++ b/security/manager/ssl/osclientcerts/dynamic-library/moz.build @@ -20,6 +20,13 @@ if CONFIG["OS_ARCH"] == "WINNT": "ws2_32", "ntdll", ] + # Version string comparison is generally wrong, but by the time it would + # actually matter, either bug 1489995 would be fixed, or the build would + # require version >= 1.78. + if CONFIG["RUSTC_VERSION"] and CONFIG["RUSTC_VERSION"] >= "1.78.0": + OS_LIBS += [ + "synchronization", + ] if CONFIG["OS_ARCH"] == "Darwin": OS_LIBS += [ |