diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 19:33:14 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 19:33:14 +0000 |
commit | 36d22d82aa202bb199967e9512281e9a53db42c9 (patch) | |
tree | 105e8c98ddea1c1e4784a60a5a6410fa416be2de /security/nss/cmd/manifest.mn | |
parent | Initial commit. (diff) | |
download | firefox-esr-36d22d82aa202bb199967e9512281e9a53db42c9.tar.xz firefox-esr-36d22d82aa202bb199967e9512281e9a53db42c9.zip |
Adding upstream version 115.7.0esr.upstream/115.7.0esr
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'security/nss/cmd/manifest.mn')
-rw-r--r-- | security/nss/cmd/manifest.mn | 112 |
1 files changed, 112 insertions, 0 deletions
diff --git a/security/nss/cmd/manifest.mn b/security/nss/cmd/manifest.mn new file mode 100644 index 0000000000..aafcf86fdb --- /dev/null +++ b/security/nss/cmd/manifest.mn @@ -0,0 +1,112 @@ +# +# 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/. + +DEPTH = .. +# MODULE = seccmd + +SOFTOKEN_SRCDIRS= +NSS_SRCDIRS= +LIB_SRCDIRS= + +ifdef NSS_BUILD_UTIL_ONLY +REQUIRES = nspr +else +REQUIRES = nss nspr libdbm +LIB_SRCDIRS = \ + lib \ + $(NULL) +endif + +ifndef NSS_BUILD_UTIL_ONLY +SOFTOKEN_SRCDIRS = \ + $(BLTEST_SRCDIR) \ + $(ECPERF_SRCDIR) \ + $(FREEBL_ECTEST_SRCDIR) \ + $(FIPSTEST_SRCDIR) \ + $(LOWHASHTEST_SRCDIR) \ + $(SHLIBSIGN_SRCDIR) \ + $(NULL) +endif + +ifndef NSS_BUILD_SOFTOKEN_ONLY +ifndef NSS_BUILD_UTIL_ONLY +NSS_SRCDIRS = \ + addbuiltin \ + atob \ + btoa \ + certutil \ + chktest \ + crlutil \ + crmftest \ + dbtest \ + derdump \ + digest \ + httpserv \ + listsuites \ + makepqg \ + multinit \ + nss-policy-check \ + ocspclnt \ + ocspresp \ + oidcalc \ + p7content \ + p7env \ + p7sign \ + p7verify \ + pk12util \ + pk11importtest \ + pk11ectest \ + pk11gcmtest \ + pk11mode \ + pk1sign \ + pp \ + pwdecrypt \ + rsaperf \ + rsapoptst \ + sdbthreadtst \ + sdrtest \ + selfserv \ + signtool \ + signver \ + smimetools \ + ssltap \ + strsclnt \ + symkeyutil \ + tests \ + tstclnt \ + validation \ + vfychain \ + vfyserv \ + modutil \ + $(NULL) + +ifndef NSS_DISABLE_LIBPKIX +NSS_SRCDIRS += \ + pkix-errcodes \ + $(NULL) +endif + +endif +endif + +DIRS = \ + $(LIB_SRCDIRS) \ + $(SOFTOKEN_SRCDIRS) \ + $(NSS_SRCDIRS) + +TEMPORARILY_DONT_BUILD = \ + $(NULL) + +# rsaperf \ +# +# needs to look at what needs to happen to make jar build in +# the binary release environment. +# +# perror requires lib/strerror.c which requires the client code installed +# to build (requires allxpstr.h) +# +DONT_BULD = jar \ + perror \ +$(NULL) |