All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH] package/civetweb: fix linking failure due to wrong OpenSSL passed to pkg-config
@ 2019-04-10 10:37 Giulio Benetti
  2019-04-10 11:43 ` Thomas Petazzoni
  2019-04-14 21:28 ` Peter Korsgaard
  0 siblings, 2 replies; 3+ messages in thread
From: Giulio Benetti @ 2019-04-10 10:37 UTC (permalink / raw)
  To: buildroot

On commit 027a8b29f1e62d5ff5bbb15b79376614f902a680 pkg-config has been
added to retrieve OpenSSL dependencies, but it's been passed `libssl`
instead of `openssl`, this makes fail some linking. Indeed we need
OpenSSL dependency, so let's use `openssl` with pkg-config.

Substitute `libssl` with `openssl`.

Fixes:
http://autobuild.buildroot.net/results/b22/b225425ee237852bd9fee4ca0b8d24f3e37d64f9/

Signed-off-by: Giulio Benetti <giulio.benetti@micronovasrl.com>
---
 package/civetweb/civetweb.mk | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/package/civetweb/civetweb.mk b/package/civetweb/civetweb.mk
index 80272738e4..1652239ebb 100644
--- a/package/civetweb/civetweb.mk
+++ b/package/civetweb/civetweb.mk
@@ -32,7 +32,7 @@ endif
 
 ifeq ($(BR2_PACKAGE_OPENSSL),y)
 CIVETWEB_COPT += -DNO_SSL_DL
-CIVETWEB_LIBS += `$(PKG_CONFIG_HOST_BINARY) --libs libssl`
+CIVETWEB_LIBS += `$(PKG_CONFIG_HOST_BINARY) --libs openssl`
 CIVETWEB_DEPENDENCIES += openssl host-pkgconf
 else
 CIVETWEB_COPT += -DNO_SSL
-- 
2.17.1

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

* [Buildroot] [PATCH] package/civetweb: fix linking failure due to wrong OpenSSL passed to pkg-config
  2019-04-10 10:37 [Buildroot] [PATCH] package/civetweb: fix linking failure due to wrong OpenSSL passed to pkg-config Giulio Benetti
@ 2019-04-10 11:43 ` Thomas Petazzoni
  2019-04-14 21:28 ` Peter Korsgaard
  1 sibling, 0 replies; 3+ messages in thread
From: Thomas Petazzoni @ 2019-04-10 11:43 UTC (permalink / raw)
  To: buildroot

On Wed, 10 Apr 2019 12:37:46 +0200
Giulio Benetti <giulio.benetti@micronovasrl.com> wrote:

> On commit 027a8b29f1e62d5ff5bbb15b79376614f902a680 pkg-config has been
> added to retrieve OpenSSL dependencies, but it's been passed `libssl`
> instead of `openssl`, this makes fail some linking. Indeed we need
> OpenSSL dependency, so let's use `openssl` with pkg-config.
> 
> Substitute `libssl` with `openssl`.
> 
> Fixes:
> http://autobuild.buildroot.net/results/b22/b225425ee237852bd9fee4ca0b8d24f3e37d64f9/
> 
> Signed-off-by: Giulio Benetti <giulio.benetti@micronovasrl.com>
> ---
>  package/civetweb/civetweb.mk | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)

Applied to master, thanks.

Thomas
-- 
Thomas Petazzoni, CTO, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com

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

* [Buildroot] [PATCH] package/civetweb: fix linking failure due to wrong OpenSSL passed to pkg-config
  2019-04-10 10:37 [Buildroot] [PATCH] package/civetweb: fix linking failure due to wrong OpenSSL passed to pkg-config Giulio Benetti
  2019-04-10 11:43 ` Thomas Petazzoni
@ 2019-04-14 21:28 ` Peter Korsgaard
  1 sibling, 0 replies; 3+ messages in thread
From: Peter Korsgaard @ 2019-04-14 21:28 UTC (permalink / raw)
  To: buildroot

>>>>> "Giulio" == Giulio Benetti <giulio.benetti@micronovasrl.com> writes:

 > On commit 027a8b29f1e62d5ff5bbb15b79376614f902a680 pkg-config has been
 > added to retrieve OpenSSL dependencies, but it's been passed `libssl`
 > instead of `openssl`, this makes fail some linking. Indeed we need
 > OpenSSL dependency, so let's use `openssl` with pkg-config.

 > Substitute `libssl` with `openssl`.

 > Fixes:
 > http://autobuild.buildroot.net/results/b22/b225425ee237852bd9fee4ca0b8d24f3e37d64f9/

 > Signed-off-by: Giulio Benetti <giulio.benetti@micronovasrl.com>

Committed to 2019.02.x, thanks.

-- 
Bye, Peter Korsgaard

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

end of thread, other threads:[~2019-04-14 21:28 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-04-10 10:37 [Buildroot] [PATCH] package/civetweb: fix linking failure due to wrong OpenSSL passed to pkg-config Giulio Benetti
2019-04-10 11:43 ` Thomas Petazzoni
2019-04-14 21:28 ` Peter Korsgaard

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.