!Descarga de las fuentes:
<>
!Configuración:
*[[Release notes para la version 3.11.4|http://www.mozilla.org/projects/security/pki/nss/nss-3.11.4/nss-3.11.4-release-notes.html]]
*[[Build instructions|http://www.mozilla.org/projects/security/pki/nss/nss-3.11.4/nss-3.11.4-build.html]]
{{{
1. Set environment variables:
1. For Windows, set OS_TARGET to be either WINNT or WIN95 in the environment
2. For Windows, make your PATH include the directory that contains Netscape's wintools (special gmake, shmsdos, etc.)
3. If you want a non-debug optimized build, set BUILD_OPT=1 in your environment. Otherwise, you get a debug build. On Windows, if you want a debug build with the system's debug RTL libraries, set USE_DEBUG_RTL=1 in your environment.
4. On Unix platforms, except Alpha/OSF1, if you want a build for the system's 64-bit ABI, set USE_64=1 in your environment. By default, NSS builds for the 32-bit environment on all platforms except Alpha/OSF1.
5. Set the environment variable CVSROOT to :pserver:anonymous@cvs-mirror.mozilla.org:/cvsroot
6. To build with gcc on platforms other than Linux and Windows, you need to set two more environment variables:
NS_USE_GCC=1
NO_MDUPDATE=1 For Windows, make sure the environment variable HOME is set to the name of a writable directory, and does not end with a slash or backslash, e.g. c:/home
7. 8. For HP-UX, you must set the environment variable USE_PTHREADS to 1.
2. cvs login (if you haven't before).
3. Do the following CVS checkouts. Note: CVS always takes forward slashes, even on Windows.
cvs co -r NSPR_4_6_4_RTM mozilla/nsprpub
cvs co -r NSS_3_11_4_RTM mozilla/dbm mozilla/security/dbm
cvs co -r NSS_3_11_4_RTM mozilla/security/coreconf mozilla/security/nss
4. Build NSPR, DBM, and NSS:
cd mozilla/security/nss (or, on Windows, cd mozilla\ssecurity\snss)
gmake nss_build_all
}}}
Es decir, en el caso que nos interesa, (dado que gmake no esta instalado):
{{{
cd mozilla/security/nss (or, on Windows, cd mozilla\ssecurity\snss)
make nss_build_all
}}}
//et voila...//