Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/1] package/linknx: add optional dependency to libcurl again
@ 2017-12-01 19:05 Bernd Kuhls
  2017-12-01 21:38 ` Thomas Petazzoni
  0 siblings, 1 reply; 3+ messages in thread
From: Bernd Kuhls @ 2017-12-01 19:05 UTC (permalink / raw)
  To: buildroot

https://git.buildroot.net/buildroot/commit/package/linknx?id=e1c9a2349006e657e76dff35706a774376921fb7
made libcurl a hard dependency to fix autoreconf.

https://git.buildroot.net/buildroot/commit/package/linknx?id=b56083099f113817edc6811e2cdd820df1c80450
removed autoreconf but did not re-add libcurl as optional dependency by
mistakenly assuming that libcurl is needed only for autoreconf.

Tested using this defconfig:

BR2_TOOLCHAIN_BUILDROOT_CXX=y
BR2_PACKAGE_LIBCURL=y
BR2_PACKAGE_LINKNX=y

Configure log of linknx without this patch

checking for curl-config... /usr/bin/curl-config
checking for the version of libcurl... 7.52.1
checking for libcurl >= version 7.14.0... yes
checking whether libcurl is usable... no

and with this patch

checking for curl-config... /home/buildroot/br4/output/host/i586-buildroot-linux-uclibc/sysroot/usr/bin/curl-config
checking for the version of libcurl... 7.57.0
checking for libcurl >= version 7.14.0... yes
checking whether libcurl is usable... yes
checking for curl_free... yes

Inspired by the fli4l project
https://web.nettworks.org/repo/changelog/fli4l?cs=49347

Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
---
 package/linknx/linknx.mk | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/package/linknx/linknx.mk b/package/linknx/linknx.mk
index fcef475dba..7965ce4e16 100644
--- a/package/linknx/linknx.mk
+++ b/package/linknx/linknx.mk
@@ -18,6 +18,13 @@ LINKNX_CONF_OPTS = \
 LINKNX_DEPENDENCIES = libpthsem \
 	$(if $(BR2_PACKAGE_ARGP_STANDALONE),argp-standalone)
 
+ifeq ($(BR2_PACKAGE_LIBCURL),y)
+LINKNX_CONF_OPTS += --with-libcurl=$(STAGING_DIR)/usr
+LINKNX_DEPENDENCIES += libcurl
+else
+LINKNX_CONF_OPTS += --without-libcurl
+endif
+
 ifeq ($(BR2_PACKAGE_MYSQL),y)
 LINKNX_CONF_OPTS += --with-mysql=$(STAGING_DIR)/usr
 LINKNX_DEPENDENCIES += mysql
-- 
2.11.0

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

* [Buildroot] [PATCH 1/1] package/linknx: add optional dependency to libcurl again
  2017-12-01 19:05 [Buildroot] [PATCH 1/1] package/linknx: add optional dependency to libcurl again Bernd Kuhls
@ 2017-12-01 21:38 ` Thomas Petazzoni
  2017-12-27  9:37   ` Peter Korsgaard
  0 siblings, 1 reply; 3+ messages in thread
From: Thomas Petazzoni @ 2017-12-01 21:38 UTC (permalink / raw)
  To: buildroot

Hello,

On Fri,  1 Dec 2017 20:05:23 +0100, Bernd Kuhls wrote:
> https://git.buildroot.net/buildroot/commit/package/linknx?id=e1c9a2349006e657e76dff35706a774376921fb7
> made libcurl a hard dependency to fix autoreconf.
> 
> https://git.buildroot.net/buildroot/commit/package/linknx?id=b56083099f113817edc6811e2cdd820df1c80450
> removed autoreconf but did not re-add libcurl as optional dependency by
> mistakenly assuming that libcurl is needed only for autoreconf.
> 
> Tested using this defconfig:
> 
> BR2_TOOLCHAIN_BUILDROOT_CXX=y
> BR2_PACKAGE_LIBCURL=y
> BR2_PACKAGE_LINKNX=y
> 
> Configure log of linknx without this patch
> 
> checking for curl-config... /usr/bin/curl-config
> checking for the version of libcurl... 7.52.1
> checking for libcurl >= version 7.14.0... yes
> checking whether libcurl is usable... no
> 
> and with this patch
> 
> checking for curl-config... /home/buildroot/br4/output/host/i586-buildroot-linux-uclibc/sysroot/usr/bin/curl-config
> checking for the version of libcurl... 7.57.0
> checking for libcurl >= version 7.14.0... yes
> checking whether libcurl is usable... yes
> checking for curl_free... yes
> 
> Inspired by the fli4l project
> https://web.nettworks.org/repo/changelog/fli4l?cs=49347
> 
> Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
> ---
>  package/linknx/linknx.mk | 7 +++++++
>  1 file changed, 7 insertions(+)

Applied to master, thanks.

Thomas
-- 
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com

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

* [Buildroot] [PATCH 1/1] package/linknx: add optional dependency to libcurl again
  2017-12-01 21:38 ` Thomas Petazzoni
@ 2017-12-27  9:37   ` Peter Korsgaard
  0 siblings, 0 replies; 3+ messages in thread
From: Peter Korsgaard @ 2017-12-27  9:37 UTC (permalink / raw)
  To: buildroot

>>>>> "Thomas" == Thomas Petazzoni <thomas.petazzoni@free-electrons.com> writes:

 > Hello,
 > On Fri,  1 Dec 2017 20:05:23 +0100, Bernd Kuhls wrote:
 >> https://git.buildroot.net/buildroot/commit/package/linknx?id=e1c9a2349006e657e76dff35706a774376921fb7
 >> made libcurl a hard dependency to fix autoreconf.
 >> 
 >> https://git.buildroot.net/buildroot/commit/package/linknx?id=b56083099f113817edc6811e2cdd820df1c80450
 >> removed autoreconf but did not re-add libcurl as optional dependency by
 >> mistakenly assuming that libcurl is needed only for autoreconf.
 >> 
 >> Tested using this defconfig:
 >> 
 >> BR2_TOOLCHAIN_BUILDROOT_CXX=y
 >> BR2_PACKAGE_LIBCURL=y
 >> BR2_PACKAGE_LINKNX=y
 >> 
 >> Configure log of linknx without this patch
 >> 
 >> checking for curl-config... /usr/bin/curl-config
 >> checking for the version of libcurl... 7.52.1
 >> checking for libcurl >= version 7.14.0... yes
 >> checking whether libcurl is usable... no
 >> 
 >> and with this patch
 >> 
 >> checking for
 >> curl-config... /home/buildroot/br4/output/host/i586-buildroot-linux-uclibc/sysroot/usr/bin/curl-config
 >> checking for the version of libcurl... 7.57.0
 >> checking for libcurl >= version 7.14.0... yes
 >> checking whether libcurl is usable... yes
 >> checking for curl_free... yes
 >> 
 >> Inspired by the fli4l project
 >> https://web.nettworks.org/repo/changelog/fli4l?cs=49347
 >> 
 >> Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
 >> ---
 >> package/linknx/linknx.mk | 7 +++++++
 >> 1 file changed, 7 insertions(+)

Committed to 2017.11.x, thanks.

-- 
Bye, Peter Korsgaard

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

end of thread, other threads:[~2017-12-27  9:37 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-12-01 19:05 [Buildroot] [PATCH 1/1] package/linknx: add optional dependency to libcurl again Bernd Kuhls
2017-12-01 21:38 ` Thomas Petazzoni
2017-12-27  9:37   ` Peter Korsgaard

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