| OLD | NEW |
| 1 #!/bin/sh | 1 #!/bin/sh |
| 2 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 2 # Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 3 # Use of this source code is governed by a BSD-style license that can be | 3 # Use of this source code is governed by a BSD-style license that can be |
| 4 # found in the LICENSE file. | 4 # found in the LICENSE file. |
| 5 | 5 |
| 6 # Run this script in the mozilla/security/nss/lib directory in a NSS source | 6 # Run this script in the mozilla/security/nss/lib/ssl directory in a NSS |
| 7 # tree. | 7 # source tree. |
| 8 # | 8 # |
| 9 # Point patches_dir to the src/net/third_party/nss/patches directory in a | 9 # Point patches_dir to the src/net/third_party/nss/patches directory in a |
| 10 # chromium source tree. | 10 # chromium source tree. |
| 11 patches_dir=/Users/wtc/chrome1/src/net/third_party/nss/patches | 11 patches_dir=/Users/wtc/chrome1/src/net/third_party/nss/patches |
| 12 | 12 |
| 13 patch -p6 < $patches_dir/versionskew.patch | 13 patch -p6 < $patches_dir/versionskew.patch |
| 14 | 14 |
| 15 patch -p6 < $patches_dir/renegoscsv.patch | 15 patch -p6 < $patches_dir/renegoscsv.patch |
| 16 | 16 |
| 17 patch -p6 < $patches_dir/cachecerts.patch | 17 patch -p6 < $patches_dir/cachecerts.patch |
| (...skipping 11 matching lines...) Expand all Loading... |
| 29 patch -p6 < $patches_dir/getrequestedclientcerttypes.patch | 29 patch -p6 < $patches_dir/getrequestedclientcerttypes.patch |
| 30 | 30 |
| 31 patch -p6 < $patches_dir/restartclientauth.patch | 31 patch -p6 < $patches_dir/restartclientauth.patch |
| 32 | 32 |
| 33 patch -p4 < $patches_dir/dtls.patch | 33 patch -p4 < $patches_dir/dtls.patch |
| 34 | 34 |
| 35 patch -p5 < $patches_dir/falsestartnpn.patch | 35 patch -p5 < $patches_dir/falsestartnpn.patch |
| 36 | 36 |
| 37 patch -p5 < $patches_dir/dhvalues.patch | 37 patch -p5 < $patches_dir/dhvalues.patch |
| 38 | 38 |
| 39 patch -p4 < $patches_dir/channelid.patch | 39 patch -p5 < $patches_dir/channelid.patch |
| 40 | 40 |
| 41 patch -p4 < $patches_dir/dtlssrtp.patch | 41 patch -p4 < $patches_dir/dtlssrtp.patch |
| 42 | 42 |
| 43 patch -p4 < $patches_dir/keylog.patch | 43 patch -p5 < $patches_dir/keylog.patch |
| 44 | 44 |
| 45 patch -p4 < $patches_dir/getchannelinfo.patch | 45 patch -p4 < $patches_dir/getchannelinfo.patch |
| 46 | 46 |
| 47 patch -p4 < $patches_dir/tlsunique.patch | 47 patch -p5 < $patches_dir/tlsunique.patch |
| 48 | 48 |
| 49 patch -p4 < $patches_dir/sslkeylogerror.patch | 49 patch -p5 < $patches_dir/sslkeylogerror.patch |
| 50 |
| 51 patch -p4 < $patches_dir/recordlayerversion.patch |
| OLD | NEW |