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

Side by Side Diff: patches/missing_stddef.patch

Issue 9254031: Upgrade chrome's OpenSSL to same version Android ships with. (Closed) Base URL: http://src.chromium.org/svn/trunk/deps/third_party/openssl/
Patch Set: '' Created 8 years, 11 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 | « patches/jsse.patch ('k') | patches/next_proto_neg.patch » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 commit 90641d2d6d251d014815e1703157f0cd0a6d5ea1
2 Author: Adam Langley <agl@chromium.org>
3 Date: Thu Nov 4 16:02:17 2010 -0400
4
5 missing_stddef.patch
6
7 diff --git a/crypto/md2/md2.h b/crypto/md2/md2.h
8 index d59c9f2..75446fd 100644
9 --- a/crypto/md2/md2.h
10 +++ b/crypto/md2/md2.h
11 @@ -72,6 +72,8 @@
12 extern "C" {
13 #endif
14
15 +#include <stddef.h>
16 +
17 typedef struct MD2state_st
18 {
19 unsigned int num;
20 diff --git a/crypto/md4/md4.h b/crypto/md4/md4.h
21 index ba1fe4a..d9b2717 100644
22 --- a/crypto/md4/md4.h
23 +++ b/crypto/md4/md4.h
24 @@ -66,6 +66,8 @@
25 extern "C" {
26 #endif
27
28 +#include <stddef.h>
29 +
30 #ifdef OPENSSL_NO_MD4
31 #error MD4 is disabled.
32 #endif
33 diff --git a/crypto/md5/md5.h b/crypto/md5/md5.h
34 index 0761f84..1a51bcf 100644
35 --- a/crypto/md5/md5.h
36 +++ b/crypto/md5/md5.h
37 @@ -66,6 +66,8 @@
38 extern "C" {
39 #endif
40
41 +#include <stddef.h>
42 +
43 #ifdef OPENSSL_NO_MD5
44 #error MD5 is disabled.
45 #endif
46 diff --git a/crypto/ripemd/ripemd.h b/crypto/ripemd/ripemd.h
47 index 3b6d043..70a9637 100644
48 --- a/crypto/ripemd/ripemd.h
49 +++ b/crypto/ripemd/ripemd.h
50 @@ -66,6 +66,8 @@
51 extern "C" {
52 #endif
53
54 +#include <stddef.h>
55 +
56 #ifdef OPENSSL_NO_RIPEMD
57 #error RIPEMD is disabled.
58 #endif
59 diff --git a/crypto/sha/sha.h b/crypto/sha/sha.h
60 index 47a2c29..1f6ad37 100644
61 --- a/crypto/sha/sha.h
62 +++ b/crypto/sha/sha.h
63 @@ -66,6 +66,8 @@
64 extern "C" {
65 #endif
66
67 +#include <stddef.h>
68 +
69 #if defined(OPENSSL_NO_SHA) || (defined(OPENSSL_NO_SHA0) && defined(OPENSSL_NO_ SHA1))
70 #error SHA is disabled.
71 #endif
OLDNEW
« no previous file with comments | « patches/jsse.patch ('k') | patches/next_proto_neg.patch » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698