diff options
author | Leorize <alaviss@users.noreply.github.com> | 2018-05-17 06:51:28 +0700 |
---|---|---|
committer | Leorize <alaviss@users.noreply.github.com> | 2018-05-17 06:51:28 +0700 |
commit | 198f9e9c3c9050444aa86a524feae53fbad75d7e (patch) | |
tree | dcdf6dd12fdcae127714d5f0926f68e28afca700 /config/external/nss/crmf | |
parent | aa41605eeca4f68a1353120ecd8c02ef3262ef43 (diff) | |
download | UXP-198f9e9c3c9050444aa86a524feae53fbad75d7e.tar UXP-198f9e9c3c9050444aa86a524feae53fbad75d7e.tar.gz UXP-198f9e9c3c9050444aa86a524feae53fbad75d7e.tar.lz UXP-198f9e9c3c9050444aa86a524feae53fbad75d7e.tar.xz UXP-198f9e9c3c9050444aa86a524feae53fbad75d7e.zip |
external/nss: Don't link with libcrmf on --with-system-nss builds
Since Bug 1030963, functions that make use of libcrmf has been removed
from the codebase. Therefore, it's no longer necessary to link with
libcrmf.
This commit completely removes the '-lcrmf' for --with-system-nss
builds, as libcrmf is not available on all systems (eg. Arch Linux)
This commit is a follow up to #364
Diffstat (limited to 'config/external/nss/crmf')
-rw-r--r-- | config/external/nss/crmf/moz.build | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/config/external/nss/crmf/moz.build b/config/external/nss/crmf/moz.build index d2004a509..04d985d74 100644 --- a/config/external/nss/crmf/moz.build +++ b/config/external/nss/crmf/moz.build @@ -8,7 +8,6 @@ Library('crmf') if CONFIG['MOZ_SYSTEM_NSS']: OS_LIBS += [l for l in CONFIG['NSS_LIBS'] if l.startswith('-L')] - OS_LIBS += ['-lcrmf'] else: USE_LIBS += [ # The dependency on nss is not real, but is required to force the |