diff options
author | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
---|---|---|
committer | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
commit | 5f8de423f190bbb79a62f804151bc24824fa32d8 (patch) | |
tree | 10027f336435511475e392454359edea8e25895d /security/nss/lib/manifest.mn | |
parent | 49ee0794b5d912db1f95dce6eb52d781dc210db5 (diff) | |
download | UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.gz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.lz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.xz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.zip |
Add m-esr52 at 52.6.0
Diffstat (limited to 'security/nss/lib/manifest.mn')
-rw-r--r-- | security/nss/lib/manifest.mn | 62 |
1 files changed, 62 insertions, 0 deletions
diff --git a/security/nss/lib/manifest.mn b/security/nss/lib/manifest.mn new file mode 100644 index 000000000..80d7d9c44 --- /dev/null +++ b/security/nss/lib/manifest.mn @@ -0,0 +1,62 @@ +# +# This Source Code Form is subject to the terms of the Mozilla Public +# License, v. 2.0. If a copy of the MPL was not distributed with this +# file, You can obtain one at http://mozilla.org/MPL/2.0/. +CORE_DEPTH = .. +DEPTH = .. + +# Building softoken (and freebl) only requires that the paths +# to the locations where the util headers and libraries were +# previously installed by a prior util-only build - likely in +# in a system location that varies with the distribution. This +# cannot be addressed here and requires that downstream package +# mantainers add suitable modifications. Building full nss will +# not have that problem as everything is available. + +SOFTOKEN_SRCDIRS= +NSS_SRCDIRS= + +ifndef NSS_BUILD_UTIL_ONLY +SOFTOKEN_SRCDIRS = \ + $(FREEBL_SRCDIR) \ + $(SQLITE_SRCDIR) \ + $(DBM_SRCDIR) \ + $(SOFTOKEN_SRCDIR) \ + $(NULL) +ifndef NSS_BUILD_SOFTOKEN_ONLY +# the rest of nss +NSS_SRCDIRS = \ + base dev pki \ + $(LIBPKIX_SRCDIR) \ + certdb certhigh pk11wrap cryptohi nss \ + $(ZLIB_SRCDIR) ssl \ + pkcs7 pkcs12 smime \ + crmf jar \ + ckfw $(SYSINIT_SRCDIR) \ + $(NULL) +endif +endif + +# +# organized by DLL +# +# softoken and prereqs. +# stan (not a separate dll yet) +# libpkix (not a separate dll) +# nss base (traditional) +# ssl +# smime +# ckfw (builtins module) +# crmf jar (not dll's) +DIRS = \ + $(UTIL_SRCDIR) \ + $(SOFTOKEN_SRCDIRS) \ + $(NSS_SRCDIRS) \ + $(NULL) + +# fortcrypt is no longer built + +# +# these dirs are not built at the moment +# +#NOBUILD_DIRS = jar |