* [Buildroot] [PATCH 1/1] package/apr-util: requires DES in openssl
@ 2024-07-21 21:16 Fabrice Fontaine
2024-07-22 8:03 ` Arnout Vandecappelle via buildroot
2024-08-29 16:16 ` Peter Korsgaard
0 siblings, 2 replies; 3+ messages in thread
From: Fabrice Fontaine @ 2024-07-21 21:16 UTC (permalink / raw)
To: buildroot; +Cc: Bernd Kuhls, Fabrice Fontaine
Enable DES in openssl to avoid the following build failure raised since
commit a83d41867c8d69a77d5cd0a665aa216af5340359:
crypto/apr_crypto_openssl.c: In function 'crypto_cipher_mechanism':
crypto/apr_crypto_openssl.c:385:27: error: implicit declaration of function 'EVP_des_ede3_cbc'; did you mean 'NID_des_ede3_cbc'? [-Wimplicit-function-declaration]
385 | key->cipher = EVP_des_ede3_cbc();
| ^~~~~~~~~~~~~~~~
| NID_des_ede3_cbc
Fixes: a83d41867c8d69a77d5cd0a665aa216af5340359
- http://autobuild.buildroot.org/results/4b1088a705f8564f85e629316f5cfc92953f0047
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
---
package/apr-util/Config.in | 1 +
1 file changed, 1 insertion(+)
diff --git a/package/apr-util/Config.in b/package/apr-util/Config.in
index f7c119db48..06b6c2684c 100644
--- a/package/apr-util/Config.in
+++ b/package/apr-util/Config.in
@@ -5,6 +5,7 @@ config BR2_PACKAGE_APR_UTIL
depends on BR2_USE_MMU # apr
select BR2_PACKAGE_APR
select BR2_PACKAGE_EXPAT
+ select BR2_PACKAGE_LIBOPENSSL_ENABLE_DES if BR2_PACKAGE_LIBOPENSSL
select BR2_PACKAGE_LIBOPENSSL_ENGINES if BR2_PACKAGE_LIBOPENSSL
help
The utility library for the apache runtime project
--
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/apr-util: requires DES in openssl
2024-07-21 21:16 [Buildroot] [PATCH 1/1] package/apr-util: requires DES in openssl Fabrice Fontaine
@ 2024-07-22 8:03 ` Arnout Vandecappelle via buildroot
2024-08-29 16:16 ` Peter Korsgaard
1 sibling, 0 replies; 3+ messages in thread
From: Arnout Vandecappelle via buildroot @ 2024-07-22 8:03 UTC (permalink / raw)
To: Fabrice Fontaine, buildroot; +Cc: Bernd Kuhls
On 21/07/2024 23:16, Fabrice Fontaine wrote:
> Enable DES in openssl to avoid the following build failure raised since
> commit a83d41867c8d69a77d5cd0a665aa216af5340359:
>
> crypto/apr_crypto_openssl.c: In function 'crypto_cipher_mechanism':
> crypto/apr_crypto_openssl.c:385:27: error: implicit declaration of function 'EVP_des_ede3_cbc'; did you mean 'NID_des_ede3_cbc'? [-Wimplicit-function-declaration]
> 385 | key->cipher = EVP_des_ede3_cbc();
> | ^~~~~~~~~~~~~~~~
> | NID_des_ede3_cbc
>
> Fixes: a83d41867c8d69a77d5cd0a665aa216af5340359
> - http://autobuild.buildroot.org/results/4b1088a705f8564f85e629316f5cfc92953f0047
>
> Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Applied to master, thanks.
Regards,
Arnout
> ---
> package/apr-util/Config.in | 1 +
> 1 file changed, 1 insertion(+)
>
> diff --git a/package/apr-util/Config.in b/package/apr-util/Config.in
> index f7c119db48..06b6c2684c 100644
> --- a/package/apr-util/Config.in
> +++ b/package/apr-util/Config.in
> @@ -5,6 +5,7 @@ config BR2_PACKAGE_APR_UTIL
> depends on BR2_USE_MMU # apr
> select BR2_PACKAGE_APR
> select BR2_PACKAGE_EXPAT
> + select BR2_PACKAGE_LIBOPENSSL_ENABLE_DES if BR2_PACKAGE_LIBOPENSSL
> select BR2_PACKAGE_LIBOPENSSL_ENGINES if BR2_PACKAGE_LIBOPENSSL
> help
> The utility library for the apache runtime project
_______________________________________________
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/apr-util: requires DES in openssl
2024-07-21 21:16 [Buildroot] [PATCH 1/1] package/apr-util: requires DES in openssl Fabrice Fontaine
2024-07-22 8:03 ` Arnout Vandecappelle via buildroot
@ 2024-08-29 16:16 ` Peter Korsgaard
1 sibling, 0 replies; 3+ messages in thread
From: Peter Korsgaard @ 2024-08-29 16:16 UTC (permalink / raw)
To: Fabrice Fontaine; +Cc: Bernd Kuhls, buildroot
>>>>> "Fabrice" == Fabrice Fontaine <fontaine.fabrice@gmail.com> writes:
> Enable DES in openssl to avoid the following build failure raised since
> commit a83d41867c8d69a77d5cd0a665aa216af5340359:
> crypto/apr_crypto_openssl.c: In function 'crypto_cipher_mechanism':
> crypto/apr_crypto_openssl.c:385:27: error: implicit declaration of
> function 'EVP_des_ede3_cbc'; did you mean 'NID_des_ede3_cbc'?
> [-Wimplicit-function-declaration]
> 385 | key->cipher = EVP_des_ede3_cbc();
> | ^~~~~~~~~~~~~~~~
> | NID_des_ede3_cbc
> Fixes: a83d41867c8d69a77d5cd0a665aa216af5340359
> - http://autobuild.buildroot.org/results/4b1088a705f8564f85e629316f5cfc92953f0047
> 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:16 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-07-21 21:16 [Buildroot] [PATCH 1/1] package/apr-util: requires DES in openssl Fabrice Fontaine
2024-07-22 8:03 ` Arnout Vandecappelle via buildroot
2024-08-29 16:16 ` Peter Korsgaard
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox