diff options
author | Codarren Velvindron <codarren@hackers.mu> | 2016-02-09 11:40:45 -0500 |
---|---|---|
committer | David Howells <dhowells@redhat.com> | 2016-02-09 11:40:45 -0500 |
commit | 411a6f585c0f7695942497ae1a0f3f313cefc6e0 (patch) | |
tree | f9b5519b8abb2f812bdc25f4a6ef9000745970af /scripts | |
parent | 388f7b1d6e8ca06762e2454d28d6c3c55ad0fe95 (diff) |
v2 linux-next scripts/sign-file.c Fix LibreSSL support
In file included from scripts/sign-file.c:47:0:
/usr/include/openssl/cms.h:62:2: error: #error CMS is disabled.
#error CMS is disabled.
^
scripts/Makefile.host:91: recipe for target 'scripts/sign-file' failed
make[1]: *** [scripts/sign-file] Error 1
Makefile:567: recipe for target 'scripts' failed
make: *** [scripts] Error 2
Fix SSL headers so that the kernel can build with LibreSSL
Signed-off-by: Codarren Velvindron <codarren@hackers.mu>
Acked-by: David Woodhouse <David.Woodhouse@intel.com>
Signed-off-by: David Howells <dhowells@redhat.com>
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/sign-file.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/sign-file.c b/scripts/sign-file.c index 250a7a645033..a0b806d2b31d 100755 --- a/scripts/sign-file.c +++ b/scripts/sign-file.c | |||
@@ -39,7 +39,7 @@ | |||
39 | * signing with anything other than SHA1 - so we're stuck with that if such is | 39 | * signing with anything other than SHA1 - so we're stuck with that if such is |
40 | * the case. | 40 | * the case. |
41 | */ | 41 | */ |
42 | #if OPENSSL_VERSION_NUMBER < 0x10000000L | 42 | #if (OPENSSL_VERSION_NUMBER < 0x10000000L || LIBRESSL_VERSION_NUMBER) |
43 | #define USE_PKCS7 | 43 | #define USE_PKCS7 |
44 | #endif | 44 | #endif |
45 | #ifndef USE_PKCS7 | 45 | #ifndef USE_PKCS7 |