Re: Linux 4.3-rc1 build error on CentOS 5.11 "scripts/sign-file.c:23:25: fatal error: openssl/cms.h: No such file or directory"

From: Vinson Lee
Date: Thu Sep 24 2015 - 18:24:16 EST


On Thu, Sep 24, 2015 at 4:21 AM, David Howells <dhowells@xxxxxxxxxx> wrote:
> David Howells <dhowells@xxxxxxxxxx> wrote:
>
>> Does this addition help?
>
> Rather, this. Seems I shouldn't pass PKCS7_STREAM.
>
> David
> ---
> commit 227ccb6a71bd9a04d1aaff08a52fcb5ae4149d1e
> Author: David Howells <dhowells@xxxxxxxxxx>
> Date: Thu Sep 24 12:15:06 2015 +0100
>
> Further pkcs7 signing changes
>

With this additional 3rd patch, I get this build error.

HOSTCC scripts/sign-file
scripts/sign-file.c: In function âmainâ:
scripts/sign-file.c:289:3: warning: implicit declaration of function
âi2d_PKCS7_bio_streamâ [-Wimplicit-function-declaration]
ERR(i2d_PKCS7_bio_stream(b, pkcs7, NULL, 0) < 0,
^

285 #ifndef USE_PKCS7
286 ERR(i2d_CMS_bio_stream(b, cms, NULL, 0) < 0,
287 "%s", sig_file_name);
288 #else
289 ERR(i2d_PKCS7_bio_stream(b, pkcs7, NULL, 0) < 0,
290 "%s", sig_file_name);
291 #endif

After a similar edit to line 289, replacing i2d_PKCS7_bio_stream with
i2d_PKCS7_bio, sign-file.c builds for me on CentOS 5.11.

Cheers,
Vinson
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/