Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [RFC/next 1/1] package/hostapd: enable MD4 in openssl
@ 2021-05-22 19:48 Sergey Matyukevich
  2021-05-22 19:59 ` Yann E. MORIN
  0 siblings, 1 reply; 4+ messages in thread
From: Sergey Matyukevich @ 2021-05-22 19:48 UTC (permalink / raw)
  To: buildroot

Hostapd assumes that openssl always provides MD4 support. However MD4
support in openssl has become optional since  commit a83d41867c8d
("package/libopenssl: add option to enable some features").

Select openssl MD4 support in hostapd Kconfig to avoid build failures.

Fixes:
http://autobuild.buildroot.net/results/09ce1d8009da98cd2a3f2c8488abaa9f060a9d6b/

Signed-off-by: Sergey Matyukevich <geomatsi@gmail.com>
---
 package/hostapd/Config.in | 1 +
 1 file changed, 1 insertion(+)

diff --git a/package/hostapd/Config.in b/package/hostapd/Config.in
index 54d2086c09..1ac7f6cd5a 100644
--- a/package/hostapd/Config.in
+++ b/package/hostapd/Config.in
@@ -1,6 +1,7 @@
 config BR2_PACKAGE_HOSTAPD
 	bool "hostapd"
 	depends on BR2_USE_MMU # fork()
+	select BR2_PACKAGE_LIBOPENSSL_ENABLE_MD4 if BR2_PACKAGE_LIBOPENSSL
 	help
 	  User space daemon for wireless access points.
 
-- 
2.31.1

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

* [Buildroot] [RFC/next 1/1] package/hostapd: enable MD4 in openssl
  2021-05-22 19:48 [Buildroot] [RFC/next 1/1] package/hostapd: enable MD4 in openssl Sergey Matyukevich
@ 2021-05-22 19:59 ` Yann E. MORIN
  2021-05-22 20:07   ` Sergey Matyukevich
  0 siblings, 1 reply; 4+ messages in thread
From: Yann E. MORIN @ 2021-05-22 19:59 UTC (permalink / raw)
  To: buildroot

Sergey, All,

On 2021-05-22 22:48 +0300, Sergey Matyukevich spake thusly:
> Hostapd assumes that openssl always provides MD4 support. However MD4
> support in openssl has become optional since  commit a83d41867c8d
> ("package/libopenssl: add option to enable some features").
> 
> Select openssl MD4 support in hostapd Kconfig to avoid build failures.
> 
> Fixes:
> http://autobuild.buildroot.net/results/09ce1d8009da98cd2a3f2c8488abaa9f060a9d6b/
> 
> Signed-off-by: Sergey Matyukevich <geomatsi@gmail.com>

Applied to next, thanks.

Regards,
Yann E. MORIN.

> ---
>  package/hostapd/Config.in | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/package/hostapd/Config.in b/package/hostapd/Config.in
> index 54d2086c09..1ac7f6cd5a 100644
> --- a/package/hostapd/Config.in
> +++ b/package/hostapd/Config.in
> @@ -1,6 +1,7 @@
>  config BR2_PACKAGE_HOSTAPD
>  	bool "hostapd"
>  	depends on BR2_USE_MMU # fork()
> +	select BR2_PACKAGE_LIBOPENSSL_ENABLE_MD4 if BR2_PACKAGE_LIBOPENSSL
>  	help
>  	  User space daemon for wireless access points.
>  
> -- 
> 2.31.1
> 
> _______________________________________________
> 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] 4+ messages in thread

* [Buildroot] [RFC/next 1/1] package/hostapd: enable MD4 in openssl
  2021-05-22 19:59 ` Yann E. MORIN
@ 2021-05-22 20:07   ` Sergey Matyukevich
  2021-05-22 20:09     ` Yann E. MORIN
  0 siblings, 1 reply; 4+ messages in thread
From: Sergey Matyukevich @ 2021-05-22 20:07 UTC (permalink / raw)
  To: buildroot

Hello Yann,

> > Hostapd assumes that openssl always provides MD4 support. However MD4
> > support in openssl has become optional since  commit a83d41867c8d
> > ("package/libopenssl: add option to enable some features").
> > 
> > Select openssl MD4 support in hostapd Kconfig to avoid build failures.
> > 
> > Fixes:
> > http://autobuild.buildroot.net/results/09ce1d8009da98cd2a3f2c8488abaa9f060a9d6b/
> > 
> > Signed-off-by: Sergey Matyukevich <geomatsi@gmail.com>
> 
> Applied to next, thanks.

Once again I forgot about wpa_supplicant. It has the same issue, though
not yet in autobuilder. I will double-check build and send another fix.

Regards,
Sergey

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

* [Buildroot] [RFC/next 1/1] package/hostapd: enable MD4 in openssl
  2021-05-22 20:07   ` Sergey Matyukevich
@ 2021-05-22 20:09     ` Yann E. MORIN
  0 siblings, 0 replies; 4+ messages in thread
From: Yann E. MORIN @ 2021-05-22 20:09 UTC (permalink / raw)
  To: buildroot

Sergey, All,

On 2021-05-22 23:07 +0300, Sergey Matyukevich spake thusly:
> > > Hostapd assumes that openssl always provides MD4 support. However MD4
> > > support in openssl has become optional since  commit a83d41867c8d
> > > ("package/libopenssl: add option to enable some features").
> > > 
> > > Select openssl MD4 support in hostapd Kconfig to avoid build failures.
> > > 
> > > Fixes:
> > > http://autobuild.buildroot.net/results/09ce1d8009da98cd2a3f2c8488abaa9f060a9d6b/
> > > 
> > > Signed-off-by: Sergey Matyukevich <geomatsi@gmail.com>
> > Applied to next, thanks.
> Once again I forgot about wpa_supplicant. It has the same issue, though
> not yet in autobuilder. I will double-check build and send another fix.

Ah, yes, damn, I forgot too. :-)

Thanks, I'll keep an eye for your patch, then. Thanks! :-)

Regards,
Yann E. MORIN.

-- 
.-----------------.--------------------.------------------.--------------------.
|  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] 4+ messages in thread

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

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-05-22 19:48 [Buildroot] [RFC/next 1/1] package/hostapd: enable MD4 in openssl Sergey Matyukevich
2021-05-22 19:59 ` Yann E. MORIN
2021-05-22 20:07   ` Sergey Matyukevich
2021-05-22 20:09     ` Yann E. MORIN

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox