| OLD | NEW |
| 1 Name: openssl | 1 Name: openssl |
| 2 URL: http://openssl.org/source/ | 2 URL: http://openssl.org/source/ |
| 3 Version: 1.0.1e | 3 Version: 1.0.1e |
| 4 License: BSDish | 4 License: BSDish |
| 5 License File: openssl/NOTICE | 5 License File: openssl/NOTICE |
| 6 License Android Compatible: yes | 6 License Android Compatible: yes |
| 7 Security Critical: yes | 7 Security Critical: yes |
| 8 | 8 |
| 9 Description: | 9 Description: |
| 10 This is OpenSSL, the standard SSL/TLS library, which is used *only* in | 10 This is OpenSSL, the standard SSL/TLS library, which is used *only* in |
| (...skipping 154 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 165 that use the old /etc/ssl/certs layout (e.g. Ubuntu Lucid). | 165 that use the old /etc/ssl/certs layout (e.g. Ubuntu Lucid). |
| 166 | 166 |
| 167 This patch gives a way to find a certificate according to its hash by | 167 This patch gives a way to find a certificate according to its hash by |
| 168 using both the old and new algorithms. http://crbug.com/111045 is used | 168 using both the old and new algorithms. http://crbug.com/111045 is used |
| 169 to track this issue. | 169 to track this issue. |
| 170 | 170 |
| 171 enable-dtls1.patch: | 171 enable-dtls1.patch: |
| 172 Enable DTLSv1, which is disabled by default in the Android platform | 172 Enable DTLSv1, which is disabled by default in the Android platform |
| 173 configuration. | 173 configuration. |
| 174 | 174 |
| 175 x86_64_source_excludes.patch |
| 176 Exclude the source files bn_asm.c and rc4_skey.c for x86_64 because |
| 177 they are replaced by x86_64-gcc.c and rc4-x86_64.S. |
| 178 |
| 175 ************************************************************************** | 179 ************************************************************************** |
| 176 Adding new Chromium patches: | 180 Adding new Chromium patches: |
| 177 | 181 |
| 178 In the event you need to add a new Chromium-specific patch, follow this | 182 In the event you need to add a new Chromium-specific patch, follow this |
| 179 procedure: | 183 procedure: |
| 180 | 184 |
| 181 1) Use the --temp-dir option to download everything to a known directory | 185 1) Use the --temp-dir option to download everything to a known directory |
| 182 (by default, import_from_android.sh downloads everything into a | 186 (by default, import_from_android.sh downloads everything into a |
| 183 temporary directory that is erased when the script exits, even in | 187 temporary directory that is erased when the script exits, even in |
| 184 case of error). | 188 case of error). |
| (...skipping 12 matching lines...) Expand all Loading... |
| 197 (cd /tmp/aaa/build && diff -burN android-openssl.orig android-openssl) > pa
tches.chromium/my-new-change.patch | 201 (cd /tmp/aaa/build && diff -burN android-openssl.orig android-openssl) > pa
tches.chromium/my-new-change.patch |
| 198 | 202 |
| 199 5) Re-run the script: | 203 5) Re-run the script: |
| 200 | 204 |
| 201 ./import_from_android.sh | 205 ./import_from_android.sh |
| 202 | 206 |
| 203 Generally speaking, consider sending your patch directly to the Android | 207 Generally speaking, consider sending your patch directly to the Android |
| 204 open-source review servers too. Once submitted there, you can update | 208 open-source review servers too. Once submitted there, you can update |
| 205 the git commit in openssl-chromium.org and remove your local patch in | 209 the git commit in openssl-chromium.org and remove your local patch in |
| 206 one new CL. | 210 one new CL. |
| OLD | NEW |