blob: 81192a4d3bf515e77a553ab0aa1b3f166aed120b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
#!/bin/sh
# Copyright (c) 2012 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
# Run this script in the mozilla/security/nss/lib/ssl directory in a NSS
# source tree.
#
# Point patches_dir to the src/net/third_party/nss/patches directory in a
# chromium source tree.
patches_dir=/Users/wtc/chrome1/src/net/third_party/nss/patches
patch -p4 < $patches_dir/versionskew.patch
patch -p4 < $patches_dir/renegoscsv.patch
patch -p4 < $patches_dir/cachecerts.patch
patch -p4 < $patches_dir/peercertchain.patch
patch -p4 < $patches_dir/clientauth.patch
patch -p4 < $patches_dir/didhandshakeresume.patch
patch -p4 < $patches_dir/negotiatedextension.patch
patch -p4 < $patches_dir/getrequestedclientcerttypes.patch
patch -p4 < $patches_dir/restartclientauth.patch
patch -p4 < $patches_dir/channelid.patch
patch -p4 < $patches_dir/tlsunique.patch
patch -p4 < $patches_dir/ecpointform.patch
patch -p4 < $patches_dir/secretexporterlocks.patch
patch -p4 < $patches_dir/cbc.patch
patch -p4 < $patches_dir/suitebonly.patch
patch -p4 < $patches_dir/secitemarray.patch
patch -p4 < $patches_dir/tls12chromium.patch
patch -p4 < $patches_dir/alpn.patch
|