Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/1] package/unbound: select BR2_PACKAGE_LIBOPENSSL_ENGINES
@ 2024-07-21 15:00 Fabrice Fontaine
  2024-07-21 16:35 ` Thomas Petazzoni via buildroot
  2024-08-29 16:09 ` Peter Korsgaard
  0 siblings, 2 replies; 3+ messages in thread
From: Fabrice Fontaine @ 2024-07-21 15:00 UTC (permalink / raw)
  To: buildroot; +Cc: Fabrice Fontaine, Stefan Ott

unbound unconditionally calls the (deprecated) ENGINE_* logic in
libopenssl resulting in a build failure when
!BR2_PACKAGE_LIBOPENSSL_ENGINES since commit
623d3bbe43e9193aa8e3395367d01af59071b859:

sldns/keyraw.c:167:35: error: 'ENGINE_METHOD_ALL' undeclared (first use in this function)
  167 |         if(!ENGINE_set_default(e, ENGINE_METHOD_ALL)) {
      |                                   ^~~~~~~~~~~~~~~~~

Fixes: 623d3bbe43e9193aa8e3395367d01af59071b859
 - http://autobuild.buildroot.org/results/b7782f5ba54543df53a835552632f58d4ad6c082

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

diff --git a/package/unbound/Config.in b/package/unbound/Config.in
index ae2ebfd975..c8d697113c 100644
--- a/package/unbound/Config.in
+++ b/package/unbound/Config.in
@@ -3,6 +3,7 @@ config BR2_PACKAGE_UNBOUND
 	depends on !BR2_STATIC_LIBS
 	select BR2_PACKAGE_EXPAT
 	select BR2_PACKAGE_LIBEVENT
+	select BR2_PACKAGE_LIBOPENSSL_ENGINES if BR2_PACKAGE_LIBOPENSSL
 	select BR2_PACKAGE_OPENSSL
 	help
 	  Unbound is a validating, recursive, and caching DNS resolver.
-- 
2.43.0

_______________________________________________
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/unbound: select BR2_PACKAGE_LIBOPENSSL_ENGINES
  2024-07-21 15:00 [Buildroot] [PATCH 1/1] package/unbound: select BR2_PACKAGE_LIBOPENSSL_ENGINES Fabrice Fontaine
@ 2024-07-21 16:35 ` Thomas Petazzoni via buildroot
  2024-08-29 16:09 ` Peter Korsgaard
  1 sibling, 0 replies; 3+ messages in thread
From: Thomas Petazzoni via buildroot @ 2024-07-21 16:35 UTC (permalink / raw)
  To: Fabrice Fontaine; +Cc: Stefan Ott, buildroot

On Sun, 21 Jul 2024 17:00:11 +0200
Fabrice Fontaine <fontaine.fabrice@gmail.com> wrote:

> unbound unconditionally calls the (deprecated) ENGINE_* logic in
> libopenssl resulting in a build failure when
> !BR2_PACKAGE_LIBOPENSSL_ENGINES since commit
> 623d3bbe43e9193aa8e3395367d01af59071b859:
> 
> sldns/keyraw.c:167:35: error: 'ENGINE_METHOD_ALL' undeclared (first use in this function)
>   167 |         if(!ENGINE_set_default(e, ENGINE_METHOD_ALL)) {
>       |                                   ^~~~~~~~~~~~~~~~~
> 
> Fixes: 623d3bbe43e9193aa8e3395367d01af59071b859
>  - http://autobuild.buildroot.org/results/b7782f5ba54543df53a835552632f58d4ad6c082
> 
> Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
> ---
>  package/unbound/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

* Re: [Buildroot] [PATCH 1/1] package/unbound: select BR2_PACKAGE_LIBOPENSSL_ENGINES
  2024-07-21 15:00 [Buildroot] [PATCH 1/1] package/unbound: select BR2_PACKAGE_LIBOPENSSL_ENGINES Fabrice Fontaine
  2024-07-21 16:35 ` Thomas Petazzoni via buildroot
@ 2024-08-29 16:09 ` Peter Korsgaard
  1 sibling, 0 replies; 3+ messages in thread
From: Peter Korsgaard @ 2024-08-29 16:09 UTC (permalink / raw)
  To: Fabrice Fontaine; +Cc: Stefan Ott, buildroot

>>>>> "Fabrice" == Fabrice Fontaine <fontaine.fabrice@gmail.com> writes:

 > unbound unconditionally calls the (deprecated) ENGINE_* logic in
 > libopenssl resulting in a build failure when
 > !BR2_PACKAGE_LIBOPENSSL_ENGINES since commit
 > 623d3bbe43e9193aa8e3395367d01af59071b859:

 > sldns/keyraw.c:167:35: error: 'ENGINE_METHOD_ALL' undeclared (first use in this function)
 >   167 |         if(!ENGINE_set_default(e, ENGINE_METHOD_ALL)) {
 >       |                                   ^~~~~~~~~~~~~~~~~

 > Fixes: 623d3bbe43e9193aa8e3395367d01af59071b859
 >  - http://autobuild.buildroot.org/results/b7782f5ba54543df53a835552632f58d4ad6c082

 > Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>

Committed to 2024.02.x and 2024.05.x, thanks.

-- 
Bye, Peter Korsgaard
_______________________________________________
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:[~2024-08-29 16:09 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-07-21 15:00 [Buildroot] [PATCH 1/1] package/unbound: select BR2_PACKAGE_LIBOPENSSL_ENGINES Fabrice Fontaine
2024-07-21 16:35 ` Thomas Petazzoni via buildroot
2024-08-29 16:09 ` Peter Korsgaard

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