comparison scripts/nspr-checkout.sh @ 0:1e5118fa0cb1

This is NSS with a Cmake Buildsyste To compile a static NSS library for Windows we've used the Chromium-NSS fork and added a Cmake buildsystem to compile it statically for Windows. See README.chromium for chromium changes and README.trustbridge for our modifications.
author Andre Heinecke <andre.heinecke@intevation.de>
date Mon, 28 Jul 2014 10:47:06 +0200
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:1e5118fa0cb1
1 #!/bin/sh
2 # Copyright (c) 2011 The Chromium Authors. All rights reserved.
3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file.
5
6 # This shell script checks out the NSPR source tree from CVS and prepares
7 # it for Chromium.
8
9 # Make the script exit as soon as something fails.
10 set -ex
11
12 rm -rf nspr
13 hg clone -u NSPR_4_10_4_RTM https://hg.mozilla.org/projects/nspr
14
15 rm -r nspr/admin
16 rm -r nspr/build
17 rm -r nspr/config
18 rm -r nspr/lib/prstreams
19 rm -r nspr/lib/tests
20 rm -r nspr/pkg
21 rm -r nspr/pr/src/cplus
22 rm -r nspr/pr/tests
23 rm -r nspr/tools
24
25 # Remove unneeded platform-specific directories.
26 rm -r nspr/pr/src/bthreads
27 rm -r nspr/pr/src/md/beos
28 rm -r nspr/pr/src/md/os2
29
30 find nspr -name .cvsignore -print | xargs rm
31 find nspr -name README -print | xargs rm
32
33 # Remove the build system.
34 rm nspr/aclocal.m4
35 rm nspr/configure
36 rm nspr/configure.in
37 find nspr -name Makefile.in -print | xargs rm
38 find nspr -name "*.mk" -print | xargs rm
39
40 # Remove files for building shared libraries/DLLs.
41 find nspr -name "*.def" -print | xargs rm
42 find nspr -name "*.rc" -print | xargs rm
43 find nspr -name prvrsion.c -print | xargs rm
44 find nspr -name plvrsion.c -print | xargs rm
45
46 # Remove unneeded platform-specific files in nspr/pr/include/md.
47 find nspr/pr/include/md -name "_*" ! -name "_darwin.*" \
48 ! -name "_linux.*" ! -name "_win95.*" ! -name _pth.h ! -name _pcos.h \
49 ! -name _unixos.h ! -name _unix_errors.h ! -name _win32_errors.h -print \
50 | xargs rm
51
52 # Remove files for unneeded Unix flavors.
53 find nspr/pr/src/md/unix -type f ! -name "ux*.c" ! -name unix.c \
54 ! -name unix_errors.c ! -name darwin.c ! -name "os_Darwin*.s" \
55 ! -name linux.c ! -name "os_Linux*.s" -print \
56 | xargs rm
57 rm nspr/pr/src/md/unix/os_Darwin_ppc.s
58 rm nspr/pr/src/md/unix/os_Linux_ppc.s
59 rm nspr/pr/src/md/unix/os_Linux_ia64.s
60 rm nspr/pr/src/md/unix/uxpoll.c
61
62 # Remove files for the WINNT build configuration.
63 rm nspr/pr/src/md/windows/ntdllmn.c
64 rm nspr/pr/src/md/windows/ntio.c
65 rm nspr/pr/src/md/windows/ntthread.c
66
67 # Remove obsolete files or files we don't need.
68 rm nspr/pr/include/gencfg.c
69 rm nspr/pr/src/misc/compile-et.pl
70 rm nspr/pr/src/misc/dtoa.c
71 rm nspr/pr/src/misc/prerr.et
72 rm nspr/pr/src/misc/prerr.properties
This site is hosted by Intevation GmbH (Datenschutzerklärung und Impressum | Privacy Policy and Imprint)