kernel: fix build error in sign-file.c with libressl

Signed-off-by: Felix Fietkau <nbd@nbd.name>
lede-17.01
Felix Fietkau 2016-09-29 11:23:27 +02:00
parent 9f6d8532c7
commit 2b3b63aea3
1 changed files with 16 additions and 0 deletions

View File

@ -0,0 +1,16 @@
LibreSSL disables the CMS subsystem, so sign-file.c needs to fall back to using
PKCS#7 in that case.
Signed-off-by: Felix Fietkau <nbd@nbd.name>
--- a/scripts/sign-file.c
+++ b/scripts/sign-file.c
@@ -39,7 +39,7 @@
* signing with anything other than SHA1 - so we're stuck with that if such is
* the case.
*/
-#if OPENSSL_VERSION_NUMBER < 0x10000000L
+#if defined(LIBRESSL_VERSION_NUMBER) || OPENSSL_VERSION_NUMBER < 0x10000000L
#define USE_PKCS7
#endif
#ifndef USE_PKCS7