bump product version to 4.1.6.2
[LibreOffice.git] / nss / README
blob18267ebcb3a0b0016e2ce3cc86e93d20f19a1c79
1 Contains the security libraries which are also part of [[moz]]. However nss is meant to be more current.
3 == Relation between nss, moz, moz_prebuilt ==
5 nss contains the security libraries which are also part of moz. However nss is
6 meant to be more current, that is it to be updated more often. This should be
7 easier than doing this with moz.
9 If nss is built depends on an environment variable (SYSTEM_NSS=NO) which
10 is per default set to YES. In this case nss is build before moz. The nss
11 libraries/lib files/headers built in moz are then not delivered. Otherwise they
12 would overwrite those from nss. That is, the nss libraries build in moz are
13 removed from mozruntime.zip (build in moz/solver/bin), they are removed from the
14 lib directory (for example moz/unxlngi6.pro/lib), and the nss and nspr headers
15 are also removed (inc/nss and inc/nspr).  The nss libraries from the nss module
16 are then added to mozruntime.zip.
18 This also applies for moz_prebuilt. Therefore moz and moz_prebuilt must be build
19 again after changes have been made to the libraries in the nss module.
21 Also when moz was updated to use a newer version of mozilla, then one must make
22 sure that new files which also belong to nss are not delivered and are removed
23 from mozruntime.zip.
26 == Fips 140 and signed libraries ==
28 Fips 140 mode is not supported. That is, the *.chk files containing the
29 checksums for the cryptographic module are not delivered into solver and will
30 not be part of the OOo installation sets.
32 Signing has been turned off because
33 - we change the rpath (install names)  after signing which breaks the signatures
34 (Mac)
35 - sqlite conflicts with the system sqlite when signing which breaks the build
38 == libfreebl3 ==
40 Porting to other platforms may require to deliver other variants of
41 libfreebl*. The library name varies according to the platform. Changes need to
42 be made to
43 ooo/moz/extractfiles.mk
44 ooo/moz/zipped/makefile.mk
45 sun/moz_prebuilt/zipped/makefile.mk
47 See also
48 [http://www.mozilla.org/projects/security/pki/nss/tech-notes/tn6.html]
51 == Windows builds of nss ==
53 To build mozilla on windows you'll need the mozilla build tools
55 Build requirements containing the link to the build tools:
56 [https://developer.mozilla.org/en/Windows_Build_Prerequisites#ss2.2]
58 The direct link:
59 [http://ftp.mozilla.org/pub/mozilla.org/mozilla/libraries/win32/MozillaBuildSetup-1.3.exe]
62 == libsqlite3 ==
64 The problem described here was found on Mac with OS 10.6
65 NSS cannot use the system sqlite on Mac because the base line is still MacOS
66 10.4. That system sqlite is incompatible with the softokn3 in nss which requires
67 a later version of sqlite.
68 When we used a more current Mac SDK then we could set
69 NSS_USE_SYSTEM_SQLITE=1
70 to build using the system sqlite.
72 We cannot deliver sqlite in the lib directory of the solver. This directory is
73 used by tools of the build environment. Using the sqlite from NSS breaks the
74 tools if they use system libraries which are linked with the system
75 sqlite. Therefore we deliver it into lib/sqlite on unix systems.
77 See also issue:
78 [https://issues.apache.org/ooo/show_bug.cgi?id=106132]