* [Buildroot] [PATCH 1/1] package/uuu: add host-openssl dependency
@ 2022-06-28 16:40 Fabrice Fontaine
2022-06-29 7:08 ` Dario Binacchi
2022-07-04 16:54 ` Yann E. MORIN
0 siblings, 2 replies; 3+ messages in thread
From: Fabrice Fontaine @ 2022-06-28 16:40 UTC (permalink / raw)
To: buildroot; +Cc: Dario Binacchi, Fabrice Fontaine
Fix the following build failure raised since the addition of the package
in commit 776385d645b37cfc43479b37e106244aa9ab2e85:
CMake Error: The following variables are used in this project, but they are set to NOTFOUND.
Please set them or make sure they are set and tested correctly in the CMake files:
OPENSSL_CRYPTO_LIBRARY (ADVANCED)
linked by target "uuu" in directory /home/buildroot/autobuild/instance-0/output-1/build/host-uuu-1.4.193/uuu
OPENSSL_SSL_LIBRARY (ADVANCED)
linked by target "uuu" in directory /home/buildroot/autobuild/instance-0/output-1/build/host-uuu-1.4.193/uuu
Fixes:
- http://autobuild.buildroot.org/results/2f05bc67112a59eba8f59ff707e43d76e41dbad1
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
---
package/uuu/uuu.mk | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/package/uuu/uuu.mk b/package/uuu/uuu.mk
index d1d7824018..9bf9ff123b 100644
--- a/package/uuu/uuu.mk
+++ b/package/uuu/uuu.mk
@@ -9,6 +9,6 @@ UUU_SOURCE = uuu_source-$(UUU_VERSION).tar.gz
UUU_SITE = https://github.com/NXPmicro/mfgtools/releases/download/uuu_$(UUU_VERSION)
UUU_LICENSE = BSD 3-Clause "New" or "Revised" License
UUU_LICENSE_FILES = LICENSE README.md
-HOST_UUU_DEPENDENCIES = host-bzip2 host-zlib host-libusb
+HOST_UUU_DEPENDENCIES = host-bzip2 host-openssl host-zlib host-libusb
$(eval $(host-cmake-package))
--
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/uuu: add host-openssl dependency
2022-06-28 16:40 [Buildroot] [PATCH 1/1] package/uuu: add host-openssl dependency Fabrice Fontaine
@ 2022-06-29 7:08 ` Dario Binacchi
2022-07-04 16:54 ` Yann E. MORIN
1 sibling, 0 replies; 3+ messages in thread
From: Dario Binacchi @ 2022-06-29 7:08 UTC (permalink / raw)
To: Fabrice Fontaine; +Cc: buildroot
On Tue, Jun 28, 2022 at 6:43 PM Fabrice Fontaine
<fontaine.fabrice@gmail.com> wrote:
>
> Fix the following build failure raised since the addition of the package
> in commit 776385d645b37cfc43479b37e106244aa9ab2e85:
>
> CMake Error: The following variables are used in this project, but they are set to NOTFOUND.
> Please set them or make sure they are set and tested correctly in the CMake files:
> OPENSSL_CRYPTO_LIBRARY (ADVANCED)
> linked by target "uuu" in directory /home/buildroot/autobuild/instance-0/output-1/build/host-uuu-1.4.193/uuu
> OPENSSL_SSL_LIBRARY (ADVANCED)
> linked by target "uuu" in directory /home/buildroot/autobuild/instance-0/output-1/build/host-uuu-1.4.193/uuu
>
> Fixes:
> - http://autobuild.buildroot.org/results/2f05bc67112a59eba8f59ff707e43d76e41dbad1
>
> Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
> ---
> package/uuu/uuu.mk | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/package/uuu/uuu.mk b/package/uuu/uuu.mk
> index d1d7824018..9bf9ff123b 100644
> --- a/package/uuu/uuu.mk
> +++ b/package/uuu/uuu.mk
> @@ -9,6 +9,6 @@ UUU_SOURCE = uuu_source-$(UUU_VERSION).tar.gz
> UUU_SITE = https://github.com/NXPmicro/mfgtools/releases/download/uuu_$(UUU_VERSION)
> UUU_LICENSE = BSD 3-Clause "New" or "Revised" License
> UUU_LICENSE_FILES = LICENSE README.md
> -HOST_UUU_DEPENDENCIES = host-bzip2 host-zlib host-libusb
> +HOST_UUU_DEPENDENCIES = host-bzip2 host-openssl host-zlib host-libusb
>
> $(eval $(host-cmake-package))
> --
> 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/uuu: add host-openssl dependency
2022-06-28 16:40 [Buildroot] [PATCH 1/1] package/uuu: add host-openssl dependency Fabrice Fontaine
2022-06-29 7:08 ` Dario Binacchi
@ 2022-07-04 16:54 ` Yann E. MORIN
1 sibling, 0 replies; 3+ messages in thread
From: Yann E. MORIN @ 2022-07-04 16:54 UTC (permalink / raw)
To: Fabrice Fontaine; +Cc: Dario Binacchi, buildroot
Fabrice, All,
On 2022-06-28 18:40 +0200, Fabrice Fontaine spake thusly:
> Fix the following build failure raised since the addition of the package
> in commit 776385d645b37cfc43479b37e106244aa9ab2e85:
>
> CMake Error: The following variables are used in this project, but they are set to NOTFOUND.
> Please set them or make sure they are set and tested correctly in the CMake files:
> OPENSSL_CRYPTO_LIBRARY (ADVANCED)
> linked by target "uuu" in directory /home/buildroot/autobuild/instance-0/output-1/build/host-uuu-1.4.193/uuu
> OPENSSL_SSL_LIBRARY (ADVANCED)
> linked by target "uuu" in directory /home/buildroot/autobuild/instance-0/output-1/build/host-uuu-1.4.193/uuu
>
> Fixes:
> - http://autobuild.buildroot.org/results/2f05bc67112a59eba8f59ff707e43d76e41dbad1
>
> Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Applied to master, thanks.
Regards,
Yann E. MORIN.
> ---
> package/uuu/uuu.mk | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/package/uuu/uuu.mk b/package/uuu/uuu.mk
> index d1d7824018..9bf9ff123b 100644
> --- a/package/uuu/uuu.mk
> +++ b/package/uuu/uuu.mk
> @@ -9,6 +9,6 @@ UUU_SOURCE = uuu_source-$(UUU_VERSION).tar.gz
> UUU_SITE = https://github.com/NXPmicro/mfgtools/releases/download/uuu_$(UUU_VERSION)
> UUU_LICENSE = BSD 3-Clause "New" or "Revised" License
> UUU_LICENSE_FILES = LICENSE README.md
> -HOST_UUU_DEPENDENCIES = host-bzip2 host-zlib host-libusb
> +HOST_UUU_DEPENDENCIES = host-bzip2 host-openssl host-zlib host-libusb
>
> $(eval $(host-cmake-package))
> --
> 2.35.1
>
> _______________________________________________
> buildroot mailing list
> buildroot@buildroot.org
> https://lists.buildroot.org/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. |
'------------------------------^-------^------------------^--------------------'
_______________________________________________
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-07-04 16:55 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-06-28 16:40 [Buildroot] [PATCH 1/1] package/uuu: add host-openssl dependency Fabrice Fontaine
2022-06-29 7:08 ` Dario Binacchi
2022-07-04 16:54 ` 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