All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH next] package/libcurl: make sure openssl supports DES
@ 2021-05-19 19:01 Baruch Siach
  2021-05-19 20:03 ` [Buildroot] [External] " Weber, Matthew L Collins
  2021-05-19 20:14 ` [Buildroot] " Yann E. MORIN
  0 siblings, 2 replies; 3+ messages in thread
From: Baruch Siach @ 2021-05-19 19:01 UTC (permalink / raw)
  To: buildroot

DES support in openssl is optional since commit a83d41867c8d
("package/libopenssl: add option to enable some features"). curl uses
DES support in openssl when enabled. Select DES support to avoid build
failure.

Fixes:
http://autobuild.buildroot.net/results/8931fd2b71eb2490cdc041b47eff58377ac823da/
http://autobuild.buildroot.net/results/f159195adf05c375d7d314a270afd3a55d43ebdd/
http://autobuild.buildroot.net/results/e143c75bccd7bcd4216954b76099404a38cf9bc1/

Cc: Erwan GAUTRON <erwan.gautron@bertin.fr>
Signed-off-by: Baruch Siach <baruch@tkos.co.il>
---
 package/libcurl/Config.in | 1 +
 1 file changed, 1 insertion(+)

diff --git a/package/libcurl/Config.in b/package/libcurl/Config.in
index b89c46f5eff7..466f9ee3a1c7 100644
--- a/package/libcurl/Config.in
+++ b/package/libcurl/Config.in
@@ -51,6 +51,7 @@ choice
 config BR2_PACKAGE_LIBCURL_OPENSSL
 	bool "OpenSSL"
 	depends on BR2_PACKAGE_OPENSSL
+	select BR2_PACKAGE_LIBOPENSSL_ENABLE_DES if BR2_PACKAGE_LIBOPENSSL
 
 config BR2_PACKAGE_LIBCURL_BEARSSL
 	bool "BearSSL"
-- 
2.30.2

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

* [Buildroot] [External] [PATCH next] package/libcurl: make sure openssl supports DES
  2021-05-19 19:01 [Buildroot] [PATCH next] package/libcurl: make sure openssl supports DES Baruch Siach
@ 2021-05-19 20:03 ` Weber, Matthew L Collins
  2021-05-19 20:14 ` [Buildroot] " Yann E. MORIN
  1 sibling, 0 replies; 3+ messages in thread
From: Weber, Matthew L Collins @ 2021-05-19 20:03 UTC (permalink / raw)
  To: buildroot

Baruch,

> From: Baruch Siach <baruch@tkos.co.il>
> Sent: Wednesday, May 19, 2021 2:01 PM
> To: buildroot at busybox.net <buildroot@busybox.net>
> Cc: Weber, Matthew L Collins <Matthew.Weber@collins.com>; Baruch Siach <baruch@tkos.co.il>; Erwan GAUTRON <erwan.gautron@bertin.fr>
> Subject: [External] [PATCH next] package/libcurl: make sure openssl supports DES
> ?
> DES support in openssl is optional since commit a83d41867c8d
> ("package/libopenssl: add option to enable some features"). curl uses
> DES support in openssl when enabled. Select DES support to avoid build
> failure.
>
> Fixes:
> https://urldefense.com/v3/__http://autobuild.buildroot.net/results/8931fd2b71eb2490cdc041b47eff58377ac823da/__;!!MvWE!UmmU9q2BBP6QgUqCoJpck8B7DmzN-ei9QwOYrMj6DeAe2jpT3oKVDmRmO5OH6awGw02G$
> https://urldefense.com/v3/__http://autobuild.buildroot.net/results/f159195adf05c375d7d314a270afd3a55d43ebdd/__;!!MvWE!UmmU9q2BBP6QgUqCoJpck8B7DmzN-ei9QwOYrMj6DeAe2jpT3oKVDmRmO5OH6RjpJmrT$
> https://urldefense.com/v3/__http://autobuild.buildroot.net/results/e143c75bccd7bcd4216954b76099404a38cf9bc1/__;!!MvWE!UmmU9q2BBP6QgUqCoJpck8B7DmzN-ei9QwOYrMj6DeAe2jpT3oKVDmRmO5OH6cOXd9jD$
>
> Cc: Erwan GAUTRON <erwan.gautron@bertin.fr>
> Signed-off-by: Baruch Siach <baruch@tkos.co.il>

Reviewed-by: Matthew Weber <matthew.weber@collins.com>

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

* [Buildroot] [PATCH next] package/libcurl: make sure openssl supports DES
  2021-05-19 19:01 [Buildroot] [PATCH next] package/libcurl: make sure openssl supports DES Baruch Siach
  2021-05-19 20:03 ` [Buildroot] [External] " Weber, Matthew L Collins
@ 2021-05-19 20:14 ` Yann E. MORIN
  1 sibling, 0 replies; 3+ messages in thread
From: Yann E. MORIN @ 2021-05-19 20:14 UTC (permalink / raw)
  To: buildroot

Baruch, All,

On 2021-05-19 22:01 +0300, Baruch Siach spake thusly:
> DES support in openssl is optional since commit a83d41867c8d
> ("package/libopenssl: add option to enable some features"). curl uses
> DES support in openssl when enabled. Select DES support to avoid build
> failure.
> 
> Fixes:
> http://autobuild.buildroot.net/results/8931fd2b71eb2490cdc041b47eff58377ac823da/
> http://autobuild.buildroot.net/results/f159195adf05c375d7d314a270afd3a55d43ebdd/
> http://autobuild.buildroot.net/results/e143c75bccd7bcd4216954b76099404a38cf9bc1/
> 
> Cc: Erwan GAUTRON <erwan.gautron@bertin.fr>
> Signed-off-by: Baruch Siach <baruch@tkos.co.il>

Applied to next, thanks.

Regards,
Yann E. MORIN.

> ---
>  package/libcurl/Config.in | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/package/libcurl/Config.in b/package/libcurl/Config.in
> index b89c46f5eff7..466f9ee3a1c7 100644
> --- a/package/libcurl/Config.in
> +++ b/package/libcurl/Config.in
> @@ -51,6 +51,7 @@ choice
>  config BR2_PACKAGE_LIBCURL_OPENSSL
>  	bool "OpenSSL"
>  	depends on BR2_PACKAGE_OPENSSL
> +	select BR2_PACKAGE_LIBOPENSSL_ENABLE_DES if BR2_PACKAGE_LIBOPENSSL
>  
>  config BR2_PACKAGE_LIBCURL_BEARSSL
>  	bool "BearSSL"
> -- 
> 2.30.2
> 
> _______________________________________________
> buildroot mailing list
> buildroot at busybox.net
> http://lists.busybox.net/mailman/listinfo/buildroot

-- 
.-----------------.--------------------.------------------.--------------------.
|  Yann E. MORIN  | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software  Designer | \ / CAMPAIGN     |  ___               |
| +33 561 099 427 `------------.-------:  X  AGAINST      |  \e/  There is no  |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL    |   v   conspiracy.  |
'------------------------------^-------^------------------^--------------------'

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

end of thread, other threads:[~2021-05-19 20:14 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-05-19 19:01 [Buildroot] [PATCH next] package/libcurl: make sure openssl supports DES Baruch Siach
2021-05-19 20:03 ` [Buildroot] [External] " Weber, Matthew L Collins
2021-05-19 20:14 ` [Buildroot] " Yann E. MORIN

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.