| 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 nss/lib/ssl directory in a NSS source tree. | 6 # Run this script in the nss/lib/ssl directory in a NSS source tree. |
| 7 # | 7 # |
| 8 # Point patches_dir to the src/net/third_party/nss/patches directory in a | 8 # Point patches_dir to the src/net/third_party/nss/patches directory in a |
| 9 # chromium source tree. | 9 # chromium source tree. |
| 10 patches_dir=/Users/sleevi/development/chromium/src/net/third_party/nss/patches | 10 patches_dir=/Users/sleevi/development/chromium/src/net/third_party/nss/patches |
| 11 | 11 |
| 12 patch -p2 < $patches_dir/cachecerts.patch | 12 patch -p2 < $patches_dir/cachecerts.patch |
| 13 | 13 |
| 14 patch -p2 < $patches_dir/clientauth.patch | |
| 15 | |
| 16 patch -p2 < $patches_dir/didhandshakeresume.patch | 14 patch -p2 < $patches_dir/didhandshakeresume.patch |
| 17 | 15 |
| 18 patch -p2 < $patches_dir/getrequestedclientcerttypes.patch | 16 patch -p2 < $patches_dir/getrequestedclientcerttypes.patch |
| 19 | 17 |
| 20 patch -p2 < $patches_dir/restartclientauth.patch | 18 patch -p2 < $patches_dir/restartclientauth.patch |
| 21 | 19 |
| 22 patch -p2 < $patches_dir/channelid.patch | 20 patch -p2 < $patches_dir/channelid.patch |
| 23 | 21 |
| 24 patch -p2 < $patches_dir/tlsunique.patch | 22 patch -p2 < $patches_dir/tlsunique.patch |
| 25 | 23 |
| 26 patch -p2 < $patches_dir/secretexporterlocks.patch | 24 patch -p2 < $patches_dir/secretexporterlocks.patch |
| 27 | 25 |
| 28 patch -p2 < $patches_dir/suitebonly.patch | |
| 29 | |
| 30 patch -p2 < $patches_dir/secitemarray.patch | |
| 31 | |
| 32 patch -p2 < $patches_dir/tls12chromium.patch | |
| 33 | |
| 34 patch -p2 < $patches_dir/aesgcmchromium.patch | |
| 35 | |
| 36 patch -p2 < $patches_dir/chacha20poly1305.patch | |
| 37 | |
| 38 patch -p2 < $patches_dir/cachelocks.patch | 26 patch -p2 < $patches_dir/cachelocks.patch |
| 39 | 27 |
| 40 patch -p2 < $patches_dir/signedcertificatetimestamps.patch | |
| 41 | |
| 42 patch -p2 < $patches_dir/cipherorder.patch | 28 patch -p2 < $patches_dir/cipherorder.patch |
| 43 | 29 |
| 44 patch -p2 < $patches_dir/sessioncache.patch | 30 patch -p2 < $patches_dir/sessioncache.patch |
| 45 | 31 |
| 46 patch -p2 < $patches_dir/nssrwlock.patch | 32 patch -p2 < $patches_dir/reorderextensions.patch |
| 47 | 33 |
| 48 patch -p2 < $patches_dir/reorderextensions.patch | 34 patch -p2 < $patches_dir/nobypass.patch |
| OLD | NEW |