diff options
author | Franziskus Kiefer <franziskuskiefer@gmail.com> | 2018-04-04 14:36:12 +0200 |
---|---|---|
committer | Leorize <alaviss@users.noreply.github.com> | 2018-05-16 16:49:11 +0700 |
commit | 831fcf541969567b99efe6fbf4cd22e468242d0a (patch) | |
tree | 6ed813cb510b973febc1586f52c77b4ba8e6d8a3 /old-configure.in | |
parent | 000ac0cc833c415169ed7aa8c5e3493d0d4525fd (diff) | |
download | UXP-831fcf541969567b99efe6fbf4cd22e468242d0a.tar UXP-831fcf541969567b99efe6fbf4cd22e468242d0a.tar.gz UXP-831fcf541969567b99efe6fbf4cd22e468242d0a.tar.lz UXP-831fcf541969567b99efe6fbf4cd22e468242d0a.tar.xz UXP-831fcf541969567b99efe6fbf4cd22e468242d0a.zip |
Bug 1371991 - don't link against crmf when building with --with-system-nss, r=ted
Differential Revision: https://phabricator.services.mozilla.com/D836
--HG--
extra : rebase_source : 04127ba88296e8bd6849d227641bb0eebae2c23b
extra : amend_source : dde2e35e2d12316950113e5f320d47a914783623
Diffstat (limited to 'old-configure.in')
-rw-r--r-- | old-configure.in | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/old-configure.in b/old-configure.in index 1670a90b6..e3edf4962 100644 --- a/old-configure.in +++ b/old-configure.in @@ -2058,9 +2058,7 @@ if test -n "$_USE_SYSTEM_NSS"; then AM_PATH_NSS(3.28.6, [MOZ_SYSTEM_NSS=1], [AC_MSG_ERROR([you don't have NSS installed or your version is too old])]) fi -if test -n "$MOZ_SYSTEM_NSS"; then - NSS_LIBS="$NSS_LIBS -lcrmf" -else +if test -z "$MOZ_SYSTEM_NSS"; then NSS_CFLAGS="-I${DIST}/include/nss" fi |