All the mail mirrored from lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/1] package/sscep: requires blowfish support in openssl
@ 2022-12-06 22:03 Fabrice Fontaine
  2022-12-11 14:08 ` Dario Binacchi
  2022-12-11 16:51 ` Thomas Petazzoni via buildroot
  0 siblings, 2 replies; 3+ messages in thread
From: Fabrice Fontaine @ 2022-12-06 22:03 UTC (permalink / raw
  To: buildroot; +Cc: Dario Binacchi, Fabrice Fontaine

Enable blowfish in openssl to fix the following build failure raised
since the addition of the package in commit
72fa60dc102679f51b228336ec38f5af78ff7646:

src/sscep.c: In function 'get_cipher_alg':
src/sscep.c:123:24: warning: implicit declaration of function 'EVP_bf_cbc'; did you mean 'EVP_sm4_cbc'? [-Wimplicit-function-declaration]
  123 |                 return EVP_bf_cbc();
      |                        ^~~~~~~~~~
      |                        EVP_sm4_cbc

Fixes:
 - http://autobuild.buildroot.org/results/55d2c481d8c148fb3bb61c1331340bcd71274553

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
---
 package/sscep/Config.in | 1 +
 1 file changed, 1 insertion(+)

diff --git a/package/sscep/Config.in b/package/sscep/Config.in
index 4b9039c9b2..2e5e29f7c8 100644
--- a/package/sscep/Config.in
+++ b/package/sscep/Config.in
@@ -1,5 +1,6 @@
 config BR2_PACKAGE_SSCEP
 	bool "sscep"
+	select BR2_PACKAGE_LIBOPENSSL_ENABLE_BLOWFISH if BR2_PACKAGE_LIBOPENSSL
 	select BR2_PACKAGE_OPENSSL
 	help
 	  SSCEP is a client-only implementation of the SCEP
-- 
2.35.1

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [Buildroot] [PATCH 1/1] package/sscep: requires blowfish support in openssl
  2022-12-06 22:03 [Buildroot] [PATCH 1/1] package/sscep: requires blowfish support in openssl Fabrice Fontaine
@ 2022-12-11 14:08 ` Dario Binacchi
  2022-12-11 16:51 ` Thomas Petazzoni via buildroot
  1 sibling, 0 replies; 3+ messages in thread
From: Dario Binacchi @ 2022-12-11 14:08 UTC (permalink / raw
  To: Fabrice Fontaine; +Cc: buildroot

Hi Fabrice,,

On Tue, Dec 6, 2022 at 11:03 PM Fabrice Fontaine
<fontaine.fabrice@gmail.com> wrote:
>
> Enable blowfish in openssl to fix the following build failure raised
> since the addition of the package in commit
> 72fa60dc102679f51b228336ec38f5af78ff7646:
>
> src/sscep.c: In function 'get_cipher_alg':
> src/sscep.c:123:24: warning: implicit declaration of function 'EVP_bf_cbc'; did you mean 'EVP_sm4_cbc'? [-Wimplicit-function-declaration]
>   123 |                 return EVP_bf_cbc();
>       |                        ^~~~~~~~~~
>       |                        EVP_sm4_cbc
>
> Fixes:
>  - http://autobuild.buildroot.org/results/55d2c481d8c148fb3bb61c1331340bcd71274553
>
> Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
> ---
>  package/sscep/Config.in | 1 +
>  1 file changed, 1 insertion(+)
>
> diff --git a/package/sscep/Config.in b/package/sscep/Config.in
> index 4b9039c9b2..2e5e29f7c8 100644
> --- a/package/sscep/Config.in
> +++ b/package/sscep/Config.in
> @@ -1,5 +1,6 @@
>  config BR2_PACKAGE_SSCEP
>         bool "sscep"
> +       select BR2_PACKAGE_LIBOPENSSL_ENABLE_BLOWFISH if BR2_PACKAGE_LIBOPENSSL
>         select BR2_PACKAGE_OPENSSL
>         help
>           SSCEP is a client-only implementation of the SCEP
> --
> 2.35.1
>
Reviewed-by: Dario Binacchi <dario.binacchi@amarulasolutions.com>

Thanks and regards,
Dario

-- 

Dario Binacchi

Embedded Linux Developer

dario.binacchi@amarulasolutions.com

__________________________________


Amarula Solutions SRL

Via Le Canevare 30, 31100 Treviso, Veneto, IT

T. +39 042 243 5310
info@amarulasolutions.com

www.amarulasolutions.com
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [Buildroot] [PATCH 1/1] package/sscep: requires blowfish support in openssl
  2022-12-06 22:03 [Buildroot] [PATCH 1/1] package/sscep: requires blowfish support in openssl Fabrice Fontaine
  2022-12-11 14:08 ` Dario Binacchi
@ 2022-12-11 16:51 ` Thomas Petazzoni via buildroot
  1 sibling, 0 replies; 3+ messages in thread
From: Thomas Petazzoni via buildroot @ 2022-12-11 16:51 UTC (permalink / raw
  To: Fabrice Fontaine; +Cc: Dario Binacchi, buildroot

On Tue,  6 Dec 2022 23:03:11 +0100
Fabrice Fontaine <fontaine.fabrice@gmail.com> wrote:

> Enable blowfish in openssl to fix the following build failure raised
> since the addition of the package in commit
> 72fa60dc102679f51b228336ec38f5af78ff7646:
> 
> src/sscep.c: In function 'get_cipher_alg':
> src/sscep.c:123:24: warning: implicit declaration of function 'EVP_bf_cbc'; did you mean 'EVP_sm4_cbc'? [-Wimplicit-function-declaration]
>   123 |                 return EVP_bf_cbc();
>       |                        ^~~~~~~~~~
>       |                        EVP_sm4_cbc
> 
> Fixes:
>  - http://autobuild.buildroot.org/results/55d2c481d8c148fb3bb61c1331340bcd71274553
> 
> Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
> ---
>  package/sscep/Config.in | 1 +
>  1 file changed, 1 insertion(+)

Applied to master, thanks.

Thomas
-- 
Thomas Petazzoni, CTO, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2022-12-11 16:51 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-12-06 22:03 [Buildroot] [PATCH 1/1] package/sscep: requires blowfish support in openssl Fabrice Fontaine
2022-12-11 14:08 ` Dario Binacchi
2022-12-11 16:51 ` Thomas Petazzoni via buildroot

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.