Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(5)

Side by Side Diff: README.chromium

Issue 27011005: Disable optimization in prdtoa.c under VS2013. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/deps/third_party/nss/
Patch Set: Created 7 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | nspr/pr/src/misc/prdtoa.c » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 Name: Network Security Services (NSS) 1 Name: Network Security Services (NSS)
2 Short Name: nss 2 Short Name: nss
3 URL: http://www.mozilla.org/projects/security/pki/nss/ 3 URL: http://www.mozilla.org/projects/security/pki/nss/
4 Version: 3.15 4 Version: 3.15
5 License: MPL 2 5 License: MPL 2
6 License File: nss/COPYING 6 License File: nss/COPYING
7 Security Critical: yes 7 Security Critical: yes
8 8
9 Description: 9 Description:
10 NSS 3.15 with NSPR 4.9.5 Beta 2 10 NSS 3.15 with NSPR 4.9.5 Beta 2
(...skipping 25 matching lines...) Expand all
36 (The "system" vs. "user" thread distinction comes from Java, and 36 (The "system" vs. "user" thread distinction comes from Java, and
37 ultimately from Solaris threads.) This is a workaround for 37 ultimately from Solaris threads.) This is a workaround for
38 http://crbug.com/40663. 38 http://crbug.com/40663.
39 - patches/nspr-remove-io.patch: Remove IO operations in NSPR to allow NSS 39 - patches/nspr-remove-io.patch: Remove IO operations in NSPR to allow NSS
40 to work in the sandbox. Do not initialize IO when initializing NSPR. 40 to work in the sandbox. Do not initialize IO when initializing NSPR.
41 Windows version of NSPR also tried to use getaddrinfo to resolve hostname 41 Windows version of NSPR also tried to use getaddrinfo to resolve hostname
42 in a SSL connection. By removing _PR_HAVE_GETADDRINFO this will force it 42 in a SSL connection. By removing _PR_HAVE_GETADDRINFO this will force it
43 to use PR_GetHostByName. Removing _PR_INET6_PROBE will prevent it from 43 to use PR_GetHostByName. Removing _PR_INET6_PROBE will prevent it from
44 creating an IPv6 socket to probe if IPv6 is there. 44 creating an IPv6 socket to probe if IPv6 is there.
45 DO NOT upstream this patch. 45 DO NOT upstream this patch.
46 - patches/nspr-disable-optimization-2013.patch Disable optimizations on VS2013
wtc 2013/10/14 19:59:18 Nit (not worth fixing): the "2013" in the patch fi
47 in prdtoa.c. The compiler bug is fixed upstream and this can be removed on
48 next compiler update.
46 49
47 We made the following local changes to NSS. 50 We made the following local changes to NSS.
48 - patches/nss-static.patch: to build NSS as static libraries and omit 51 - patches/nss-static.patch: to build NSS as static libraries and omit
49 libpkix (the new certification path validation library) and 52 libpkix (the new certification path validation library) and
50 softoken/legacydb (support for the old Berkeley DB databases). See NSS 53 softoken/legacydb (support for the old Berkeley DB databases). See NSS
51 bug 534471 (https://bugzilla.mozilla.org/show_bug.cgi?id=534471). 54 bug 534471 (https://bugzilla.mozilla.org/show_bug.cgi?id=534471).
52 - nss/exports_win.def: The list of exports to use when building nss as a 55 - nss/exports_win.def: The list of exports to use when building nss as a
53 dynamic library (crnss.dll). 56 dynamic library (crnss.dll).
54 - nss/lib/ckfw/builtins/certdata.c: a generated file. Do an upstream NSS 57 - nss/lib/ckfw/builtins/certdata.c: a generated file. Do an upstream NSS
55 build and copy the generated certdata.c. 58 build and copy the generated certdata.c.
56 - nss/lib/freebl/build_config_mac.h: a header that defines the target arch 59 - nss/lib/freebl/build_config_mac.h: a header that defines the target arch
57 specific configuration macros for lib/freebl on iOS and Mac OS X. This 60 specific configuration macros for lib/freebl on iOS and Mac OS X. This
58 works around the lack of support for the xcode_settings 61 works around the lack of support for the xcode_settings
59 GCC_PREPROCESSOR_DEFINITIONS[arch=foo] by the ninja GYP generator 62 GCC_PREPROCESSOR_DEFINITIONS[arch=foo] by the ninja GYP generator
60 (http://crbug.com/122592). 63 (http://crbug.com/122592).
61 - nss/lib/freebl/mpi/mpi_arm_mac.c: a wrapper file for mpi_arm.c for iOS 64 - nss/lib/freebl/mpi/mpi_arm_mac.c: a wrapper file for mpi_arm.c for iOS
62 and Mac OS X. This works around the inability to specify target arch 65 and Mac OS X. This works around the inability to specify target arch
63 specific source files in Xcode. 66 specific source files in Xcode.
64 - patches/nss-remove-fortezza.patch: remove Fortezza certificate support 67 - patches/nss-remove-fortezza.patch: remove Fortezza certificate support
65 from PK11_ImportPublicKey. See NSS bug 668397 68 from PK11_ImportPublicKey. See NSS bug 668397
66 (https://bugzilla.mozilla.org/show_bug.cgi?id=668397). 69 (https://bugzilla.mozilla.org/show_bug.cgi?id=668397).
67 - patches/nss-urandom-abort.patch: call abort() if NSS cannot read from 70 - patches/nss-urandom-abort.patch: call abort() if NSS cannot read from
68 /dev/urandom. See Chromium issue 244661 (http://crbug.com/244661). 71 /dev/urandom. See Chromium issue 244661 (http://crbug.com/244661).
69 - patches/nss-secoid-mistake.patch: revert a change to lib/util/secoid.c 72 - patches/nss-secoid-mistake.patch: revert a change to lib/util/secoid.c
70 made by mistake. See NSS bug 877798 73 made by mistake. See NSS bug 877798
71 (https://bugzilla.mozilla.org/show_bug.cgi?id=877798). 74 (https://bugzilla.mozilla.org/show_bug.cgi?id=877798).
OLDNEW
« no previous file with comments | « no previous file | nspr/pr/src/misc/prdtoa.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698