| OLD | NEW |
| (Empty) |
| 1 #!/bin/sh | |
| 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 | |
| 4 # found in the LICENSE file. | |
| 5 | |
| 6 # Run this script in the nss/lib/ssl directory in a NSS source tree. | |
| 7 # | |
| 8 # Point patches_dir to the src/net/third_party/nss/patches directory in a | |
| 9 # chromium source tree. | |
| 10 patches_dir=/Users/sleevi/development/chromium/src/net/third_party/nss/patches | |
| 11 | |
| 12 patch -p2 < $patches_dir/cachecerts.patch | |
| 13 | |
| 14 patch -p2 < $patches_dir/didhandshakeresume.patch | |
| 15 | |
| 16 patch -p2 < $patches_dir/getrequestedclientcerttypes.patch | |
| 17 | |
| 18 patch -p2 < $patches_dir/restartclientauth.patch | |
| 19 | |
| 20 patch -p2 < $patches_dir/channelid.patch | |
| 21 | |
| 22 patch -p2 < $patches_dir/tlsunique.patch | |
| 23 | |
| 24 patch -p2 < $patches_dir/secretexporterlocks.patch | |
| 25 | |
| 26 patch -p2 < $patches_dir/cachelocks.patch | |
| 27 | |
| 28 patch -p2 < $patches_dir/cipherorder.patch | |
| 29 | |
| 30 patch -p2 < $patches_dir/sessioncache.patch | |
| 31 | |
| 32 patch -p2 < $patches_dir/reorderextensions.patch | |
| 33 | |
| 34 patch -p2 < $patches_dir/nobypass.patch | |
| OLD | NEW |