diff options
| author | jsing <> | 2014-07-10 22:45:58 +0000 |
|---|---|---|
| committer | jsing <> | 2014-07-10 22:45:58 +0000 |
| commit | 62348213609ef233110561d1a6ed67ad66df1c7e (patch) | |
| tree | 9101caa8789c6a2612e96fe7996efbe84f28f5a9 /src/lib/libcrypto/engine | |
| parent | f76256c97c28f5c9dcc36c7dfc7e20cc91200130 (diff) | |
| download | openbsd-62348213609ef233110561d1a6ed67ad66df1c7e.tar.gz openbsd-62348213609ef233110561d1a6ed67ad66df1c7e.tar.bz2 openbsd-62348213609ef233110561d1a6ed67ad66df1c7e.zip | |
Explicitly include <openssl/opensslconf.h> in every file that references
an OPENSSL_NO_* define. This avoids relying on something else pulling it
in for us, plus it fixes several cases where the #ifndef OPENSSL_NO_XYZ is
never going to do anything, since OPENSSL_NO_XYZ will never defined, due
to the fact that opensslconf.h has not been included.
This also includes some miscellaneous sorting/tidying of headers.
Diffstat (limited to 'src/lib/libcrypto/engine')
| -rw-r--r-- | src/lib/libcrypto/engine/eng_aesni.c | 6 | ||||
| -rw-r--r-- | src/lib/libcrypto/engine/eng_all.c | 4 | ||||
| -rw-r--r-- | src/lib/libcrypto/engine/eng_err.c | 5 | ||||
| -rw-r--r-- | src/lib/libcrypto/engine/eng_fat.c | 4 | ||||
| -rw-r--r-- | src/lib/libcrypto/engine/eng_int.h | 3 | ||||
| -rw-r--r-- | src/lib/libcrypto/engine/eng_list.c | 4 | ||||
| -rw-r--r-- | src/lib/libcrypto/engine/eng_openssl.c | 4 | ||||
| -rw-r--r-- | src/lib/libcrypto/engine/eng_padlock.c | 4 | ||||
| -rw-r--r-- | src/lib/libcrypto/engine/eng_rsax.c | 5 |
9 files changed, 27 insertions, 12 deletions
diff --git a/src/lib/libcrypto/engine/eng_aesni.c b/src/lib/libcrypto/engine/eng_aesni.c index d1b2d613b9..0bb558c1fd 100644 --- a/src/lib/libcrypto/engine/eng_aesni.c +++ b/src/lib/libcrypto/engine/eng_aesni.c | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | /* $OpenBSD: eng_aesni.c,v 1.5 2014/06/12 15:49:29 deraadt Exp $ */ | 1 | /* $OpenBSD: eng_aesni.c,v 1.6 2014/07/10 22:45:57 jsing Exp $ */ |
| 2 | /* | 2 | /* |
| 3 | * Support for Intel AES-NI intruction set | 3 | * Support for Intel AES-NI intruction set |
| 4 | * Author: Huang Ying <ying.huang@intel.com> | 4 | * Author: Huang Ying <ying.huang@intel.com> |
| @@ -73,13 +73,13 @@ | |||
| 73 | * | 73 | * |
| 74 | */ | 74 | */ |
| 75 | 75 | ||
| 76 | #include <assert.h> | ||
| 77 | #include <stdio.h> | ||
| 76 | 78 | ||
| 77 | #include <openssl/opensslconf.h> | 79 | #include <openssl/opensslconf.h> |
| 78 | 80 | ||
| 79 | #if !defined(OPENSSL_NO_HW) && !defined(OPENSSL_NO_HW_AES_NI) && !defined(OPENSSL_NO_AES) | 81 | #if !defined(OPENSSL_NO_HW) && !defined(OPENSSL_NO_HW_AES_NI) && !defined(OPENSSL_NO_AES) |
| 80 | 82 | ||
| 81 | #include <stdio.h> | ||
| 82 | #include <assert.h> | ||
| 83 | #include "cryptlib.h" | 83 | #include "cryptlib.h" |
| 84 | #include <openssl/dso.h> | 84 | #include <openssl/dso.h> |
| 85 | #include <openssl/engine.h> | 85 | #include <openssl/engine.h> |
diff --git a/src/lib/libcrypto/engine/eng_all.c b/src/lib/libcrypto/engine/eng_all.c index 086c903675..21b76266c7 100644 --- a/src/lib/libcrypto/engine/eng_all.c +++ b/src/lib/libcrypto/engine/eng_all.c | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | /* $OpenBSD: eng_all.c,v 1.25 2014/06/12 15:49:29 deraadt Exp $ */ | 1 | /* $OpenBSD: eng_all.c,v 1.26 2014/07/10 22:45:57 jsing Exp $ */ |
| 2 | /* Written by Richard Levitte <richard@levitte.org> for the OpenSSL | 2 | /* Written by Richard Levitte <richard@levitte.org> for the OpenSSL |
| 3 | * project 2000. | 3 | * project 2000. |
| 4 | */ | 4 | */ |
| @@ -56,6 +56,8 @@ | |||
| 56 | * | 56 | * |
| 57 | */ | 57 | */ |
| 58 | 58 | ||
| 59 | #include <openssl/opensslconf.h> | ||
| 60 | |||
| 59 | #include "cryptlib.h" | 61 | #include "cryptlib.h" |
| 60 | #include "eng_int.h" | 62 | #include "eng_int.h" |
| 61 | 63 | ||
diff --git a/src/lib/libcrypto/engine/eng_err.c b/src/lib/libcrypto/engine/eng_err.c index 298c33f485..d65efde991 100644 --- a/src/lib/libcrypto/engine/eng_err.c +++ b/src/lib/libcrypto/engine/eng_err.c | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | /* $OpenBSD: eng_err.c,v 1.9 2014/06/22 11:33:47 jsing Exp $ */ | 1 | /* $OpenBSD: eng_err.c,v 1.10 2014/07/10 22:45:57 jsing Exp $ */ |
| 2 | /* ==================================================================== | 2 | /* ==================================================================== |
| 3 | * Copyright (c) 1999-2010 The OpenSSL Project. All rights reserved. | 3 | * Copyright (c) 1999-2010 The OpenSSL Project. All rights reserved. |
| 4 | * | 4 | * |
| @@ -59,6 +59,9 @@ | |||
| 59 | */ | 59 | */ |
| 60 | 60 | ||
| 61 | #include <stdio.h> | 61 | #include <stdio.h> |
| 62 | |||
| 63 | #include <openssl/opensslconf.h> | ||
| 64 | |||
| 62 | #include <openssl/err.h> | 65 | #include <openssl/err.h> |
| 63 | #include <openssl/engine.h> | 66 | #include <openssl/engine.h> |
| 64 | 67 | ||
diff --git a/src/lib/libcrypto/engine/eng_fat.c b/src/lib/libcrypto/engine/eng_fat.c index d995104a7c..9805729922 100644 --- a/src/lib/libcrypto/engine/eng_fat.c +++ b/src/lib/libcrypto/engine/eng_fat.c | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | /* $OpenBSD: eng_fat.c,v 1.13 2014/07/10 13:58:22 jsing Exp $ */ | 1 | /* $OpenBSD: eng_fat.c,v 1.14 2014/07/10 22:45:57 jsing Exp $ */ |
| 2 | /* ==================================================================== | 2 | /* ==================================================================== |
| 3 | * Copyright (c) 1999-2001 The OpenSSL Project. All rights reserved. | 3 | * Copyright (c) 1999-2001 The OpenSSL Project. All rights reserved. |
| 4 | * | 4 | * |
| @@ -60,6 +60,8 @@ | |||
| 60 | 60 | ||
| 61 | #include <string.h> | 61 | #include <string.h> |
| 62 | 62 | ||
| 63 | #include <openssl/opensslconf.h> | ||
| 64 | |||
| 63 | #include "eng_int.h" | 65 | #include "eng_int.h" |
| 64 | #include <openssl/conf.h> | 66 | #include <openssl/conf.h> |
| 65 | 67 | ||
diff --git a/src/lib/libcrypto/engine/eng_int.h b/src/lib/libcrypto/engine/eng_int.h index 22049fd7fd..aa3751f267 100644 --- a/src/lib/libcrypto/engine/eng_int.h +++ b/src/lib/libcrypto/engine/eng_int.h | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | /* $OpenBSD: eng_int.h,v 1.6 2014/06/22 12:16:28 jsing Exp $ */ | 1 | /* $OpenBSD: eng_int.h,v 1.7 2014/07/10 22:45:57 jsing Exp $ */ |
| 2 | /* Written by Geoff Thorpe (geoff@geoffthorpe.net) for the OpenSSL | 2 | /* Written by Geoff Thorpe (geoff@geoffthorpe.net) for the OpenSSL |
| 3 | * project 2000. | 3 | * project 2000. |
| 4 | */ | 4 | */ |
| @@ -65,6 +65,7 @@ | |||
| 65 | #define HEADER_ENGINE_INT_H | 65 | #define HEADER_ENGINE_INT_H |
| 66 | 66 | ||
| 67 | #include "cryptlib.h" | 67 | #include "cryptlib.h" |
| 68 | |||
| 68 | /* Take public definitions from engine.h */ | 69 | /* Take public definitions from engine.h */ |
| 69 | #include <openssl/engine.h> | 70 | #include <openssl/engine.h> |
| 70 | 71 | ||
diff --git a/src/lib/libcrypto/engine/eng_list.c b/src/lib/libcrypto/engine/eng_list.c index d7aef43999..35b45158e9 100644 --- a/src/lib/libcrypto/engine/eng_list.c +++ b/src/lib/libcrypto/engine/eng_list.c | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | /* $OpenBSD: eng_list.c,v 1.13 2014/07/10 13:58:22 jsing Exp $ */ | 1 | /* $OpenBSD: eng_list.c,v 1.14 2014/07/10 22:45:57 jsing Exp $ */ |
| 2 | /* Written by Geoff Thorpe (geoff@geoffthorpe.net) for the OpenSSL | 2 | /* Written by Geoff Thorpe (geoff@geoffthorpe.net) for the OpenSSL |
| 3 | * project 2000. | 3 | * project 2000. |
| 4 | */ | 4 | */ |
| @@ -64,6 +64,8 @@ | |||
| 64 | #include <string.h> | 64 | #include <string.h> |
| 65 | #include <unistd.h> | 65 | #include <unistd.h> |
| 66 | 66 | ||
| 67 | #include <openssl/opensslconf.h> | ||
| 68 | |||
| 67 | #include "eng_int.h" | 69 | #include "eng_int.h" |
| 68 | 70 | ||
| 69 | /* The linked-list of pointers to engine types. engine_list_head | 71 | /* The linked-list of pointers to engine types. engine_list_head |
diff --git a/src/lib/libcrypto/engine/eng_openssl.c b/src/lib/libcrypto/engine/eng_openssl.c index 882af0341f..ecc560eb26 100644 --- a/src/lib/libcrypto/engine/eng_openssl.c +++ b/src/lib/libcrypto/engine/eng_openssl.c | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | /* $OpenBSD: eng_openssl.c,v 1.7 2014/07/10 13:58:22 jsing Exp $ */ | 1 | /* $OpenBSD: eng_openssl.c,v 1.8 2014/07/10 22:45:57 jsing Exp $ */ |
| 2 | /* Written by Geoff Thorpe (geoff@geoffthorpe.net) for the OpenSSL | 2 | /* Written by Geoff Thorpe (geoff@geoffthorpe.net) for the OpenSSL |
| 3 | * project 2000. | 3 | * project 2000. |
| 4 | */ | 4 | */ |
| @@ -64,6 +64,8 @@ | |||
| 64 | #include <stdio.h> | 64 | #include <stdio.h> |
| 65 | #include <string.h> | 65 | #include <string.h> |
| 66 | 66 | ||
| 67 | #include <openssl/opensslconf.h> | ||
| 68 | |||
| 67 | #include <openssl/crypto.h> | 69 | #include <openssl/crypto.h> |
| 68 | #include "cryptlib.h" | 70 | #include "cryptlib.h" |
| 69 | #include <openssl/engine.h> | 71 | #include <openssl/engine.h> |
diff --git a/src/lib/libcrypto/engine/eng_padlock.c b/src/lib/libcrypto/engine/eng_padlock.c index 936a440b1a..ca3c958033 100644 --- a/src/lib/libcrypto/engine/eng_padlock.c +++ b/src/lib/libcrypto/engine/eng_padlock.c | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | /* $OpenBSD: eng_padlock.c,v 1.11 2014/06/22 12:05:09 jsing Exp $ */ | 1 | /* $OpenBSD: eng_padlock.c,v 1.12 2014/07/10 22:45:57 jsing Exp $ */ |
| 2 | /* | 2 | /* |
| 3 | * Support for VIA PadLock Advanced Cryptography Engine (ACE) | 3 | * Support for VIA PadLock Advanced Cryptography Engine (ACE) |
| 4 | * Written by Michal Ludvig <michal@logix.cz> | 4 | * Written by Michal Ludvig <michal@logix.cz> |
| @@ -63,11 +63,11 @@ | |||
| 63 | * | 63 | * |
| 64 | */ | 64 | */ |
| 65 | 65 | ||
| 66 | |||
| 67 | #include <stdio.h> | 66 | #include <stdio.h> |
| 68 | #include <string.h> | 67 | #include <string.h> |
| 69 | 68 | ||
| 70 | #include <openssl/opensslconf.h> | 69 | #include <openssl/opensslconf.h> |
| 70 | |||
| 71 | #include <openssl/crypto.h> | 71 | #include <openssl/crypto.h> |
| 72 | #include <openssl/dso.h> | 72 | #include <openssl/dso.h> |
| 73 | #include <openssl/engine.h> | 73 | #include <openssl/engine.h> |
diff --git a/src/lib/libcrypto/engine/eng_rsax.c b/src/lib/libcrypto/engine/eng_rsax.c index 090ff3dfda..daeb7e6ebb 100644 --- a/src/lib/libcrypto/engine/eng_rsax.c +++ b/src/lib/libcrypto/engine/eng_rsax.c | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | /* $OpenBSD: eng_rsax.c,v 1.8 2014/06/22 12:18:33 jsing Exp $ */ | 1 | /* $OpenBSD: eng_rsax.c,v 1.9 2014/07/10 22:45:57 jsing Exp $ */ |
| 2 | /* Copyright (c) 2010-2010 Intel Corp. | 2 | /* Copyright (c) 2010-2010 Intel Corp. |
| 3 | * Author: Vinodh.Gopal@intel.com | 3 | * Author: Vinodh.Gopal@intel.com |
| 4 | * Jim Guilford | 4 | * Jim Guilford |
| @@ -66,6 +66,9 @@ | |||
| 66 | 66 | ||
| 67 | #include <stdio.h> | 67 | #include <stdio.h> |
| 68 | #include <string.h> | 68 | #include <string.h> |
| 69 | |||
| 70 | #include <openssl/opensslconf.h> | ||
| 71 | |||
| 69 | #include <openssl/crypto.h> | 72 | #include <openssl/crypto.h> |
| 70 | #include <openssl/buffer.h> | 73 | #include <openssl/buffer.h> |
| 71 | #include <openssl/engine.h> | 74 | #include <openssl/engine.h> |
