All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/2] json-c: build for host
@ 2017-12-23 17:43 Baruch Siach
  2017-12-23 17:43 ` [Buildroot] [PATCH 2/2] cryptsetup: add json-c dependency to host build Baruch Siach
                   ` (2 more replies)
  0 siblings, 3 replies; 6+ messages in thread
From: Baruch Siach @ 2017-12-23 17:43 UTC (permalink / raw)
  To: buildroot

This is needed for the recent cryptsetup version host build.

Signed-off-by: Baruch Siach <baruch@tkos.co.il>
---
 package/json-c/json-c.mk | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/package/json-c/json-c.mk b/package/json-c/json-c.mk
index 7adbcafa7238..86636d7433eb 100644
--- a/package/json-c/json-c.mk
+++ b/package/json-c/json-c.mk
@@ -11,7 +11,9 @@ JSON_C_MAKE = $(MAKE1)
 JSON_C_CONF_OPTS = --disable-oldname-compat
 # AUTORECONF is needed because of Makefile.am.inc patch.
 JSON_C_AUTORECONF = YES
+HOST_JSON_C_AUTORECONF = YES
 JSON_C_LICENSE = MIT
 JSON_C_LICENSE_FILES = COPYING
 
 $(eval $(autotools-package))
+$(eval $(host-autotools-package))
-- 
2.15.1

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

* [Buildroot] [PATCH 2/2] cryptsetup: add json-c dependency to host build
  2017-12-23 17:43 [Buildroot] [PATCH 1/2] json-c: build for host Baruch Siach
@ 2017-12-23 17:43 ` Baruch Siach
  2017-12-23 22:30   ` Yann E. MORIN
  2017-12-26 18:57   ` Peter Korsgaard
  2017-12-23 22:28 ` [Buildroot] [PATCH 1/2] json-c: build for host Yann E. MORIN
  2017-12-26 18:57 ` Peter Korsgaard
  2 siblings, 2 replies; 6+ messages in thread
From: Baruch Siach @ 2017-12-23 17:43 UTC (permalink / raw)
  To: buildroot

Fixes:
http://autobuild.buildroot.net/results/ecf/ecf5d87791e0255c3fce117447105db88749f796/
http://autobuild.buildroot.net/results/384/38462d222f2a893d44de894c30dc1e53d09c377d/
http://autobuild.buildroot.net/results/c29/c2901415345d94ef2135e460f4c78c21ae7ad09a/
... and many more.

Cc: Martin Hicks <mort@bork.org>
Signed-off-by: Baruch Siach <baruch@tkos.co.il>
---
 package/cryptsetup/cryptsetup.mk | 1 +
 1 file changed, 1 insertion(+)

diff --git a/package/cryptsetup/cryptsetup.mk b/package/cryptsetup/cryptsetup.mk
index 1abee0bc2f9b..0d8480ba4886 100644
--- a/package/cryptsetup/cryptsetup.mk
+++ b/package/cryptsetup/cryptsetup.mk
@@ -33,6 +33,7 @@ HOST_CRYPTSETUP_DEPENDENCIES = \
 	host-lvm2 \
 	host-popt \
 	host-util-linux \
+	host-json-c \
 	host-openssl
 
 HOST_CRYPTSETUP_CONF_OPTS = --with-crypto-backend=openssl
-- 
2.15.1

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

* [Buildroot] [PATCH 1/2] json-c: build for host
  2017-12-23 17:43 [Buildroot] [PATCH 1/2] json-c: build for host Baruch Siach
  2017-12-23 17:43 ` [Buildroot] [PATCH 2/2] cryptsetup: add json-c dependency to host build Baruch Siach
@ 2017-12-23 22:28 ` Yann E. MORIN
  2017-12-26 18:57 ` Peter Korsgaard
  2 siblings, 0 replies; 6+ messages in thread
From: Yann E. MORIN @ 2017-12-23 22:28 UTC (permalink / raw)
  To: buildroot

Baruch, All,

On 2017-12-23 19:43 +0200, Baruch Siach spake thusly:
> This is needed for the recent cryptsetup version host build.
> 
> Signed-off-by: Baruch Siach <baruch@tkos.co.il>

Reviewed-by: "Yann E. MORIN" <yann.morin.1998@free.fr>

Regards,
Yann E. MORIN.

> ---
>  package/json-c/json-c.mk | 2 ++
>  1 file changed, 2 insertions(+)
> 
> diff --git a/package/json-c/json-c.mk b/package/json-c/json-c.mk
> index 7adbcafa7238..86636d7433eb 100644
> --- a/package/json-c/json-c.mk
> +++ b/package/json-c/json-c.mk
> @@ -11,7 +11,9 @@ JSON_C_MAKE = $(MAKE1)
>  JSON_C_CONF_OPTS = --disable-oldname-compat
>  # AUTORECONF is needed because of Makefile.am.inc patch.
>  JSON_C_AUTORECONF = YES
> +HOST_JSON_C_AUTORECONF = YES
>  JSON_C_LICENSE = MIT
>  JSON_C_LICENSE_FILES = COPYING
>  
>  $(eval $(autotools-package))
> +$(eval $(host-autotools-package))
> -- 
> 2.15.1
> 
> _______________________________________________
> buildroot mailing list
> buildroot at busybox.net
> http://lists.busybox.net/mailman/listinfo/buildroot

-- 
.-----------------.--------------------.------------------.--------------------.
|  Yann E. MORIN  | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software  Designer | \ / CAMPAIGN     |  ___               |
| +33 223 225 172 `------------.-------:  X  AGAINST      |  \e/  There is no  |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL    |   v   conspiracy.  |
'------------------------------^-------^------------------^--------------------'

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

* [Buildroot] [PATCH 2/2] cryptsetup: add json-c dependency to host build
  2017-12-23 17:43 ` [Buildroot] [PATCH 2/2] cryptsetup: add json-c dependency to host build Baruch Siach
@ 2017-12-23 22:30   ` Yann E. MORIN
  2017-12-26 18:57   ` Peter Korsgaard
  1 sibling, 0 replies; 6+ messages in thread
From: Yann E. MORIN @ 2017-12-23 22:30 UTC (permalink / raw)
  To: buildroot

Baruch, All,

On 2017-12-23 19:43 +0200, Baruch Siach spake thusly:
> Fixes:
> http://autobuild.buildroot.net/results/ecf/ecf5d87791e0255c3fce117447105db88749f796/
> http://autobuild.buildroot.net/results/384/38462d222f2a893d44de894c30dc1e53d09c377d/
> http://autobuild.buildroot.net/results/c29/c2901415345d94ef2135e460f4c78c21ae7ad09a/
> ... and many more.
> 
> Cc: Martin Hicks <mort@bork.org>
> Signed-off-by: Baruch Siach <baruch@tkos.co.il>

Reviewed-by: "Yann E. MORIN" <yann.morin.1998@free.fr>

Regards,
Yann E. MORIN.

> ---
>  package/cryptsetup/cryptsetup.mk | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/package/cryptsetup/cryptsetup.mk b/package/cryptsetup/cryptsetup.mk
> index 1abee0bc2f9b..0d8480ba4886 100644
> --- a/package/cryptsetup/cryptsetup.mk
> +++ b/package/cryptsetup/cryptsetup.mk
> @@ -33,6 +33,7 @@ HOST_CRYPTSETUP_DEPENDENCIES = \
>  	host-lvm2 \
>  	host-popt \
>  	host-util-linux \
> +	host-json-c \
>  	host-openssl
>  
>  HOST_CRYPTSETUP_CONF_OPTS = --with-crypto-backend=openssl
> -- 
> 2.15.1
> 
> _______________________________________________
> buildroot mailing list
> buildroot at busybox.net
> http://lists.busybox.net/mailman/listinfo/buildroot

-- 
.-----------------.--------------------.------------------.--------------------.
|  Yann E. MORIN  | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software  Designer | \ / CAMPAIGN     |  ___               |
| +33 223 225 172 `------------.-------:  X  AGAINST      |  \e/  There is no  |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL    |   v   conspiracy.  |
'------------------------------^-------^------------------^--------------------'

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

* [Buildroot] [PATCH 1/2] json-c: build for host
  2017-12-23 17:43 [Buildroot] [PATCH 1/2] json-c: build for host Baruch Siach
  2017-12-23 17:43 ` [Buildroot] [PATCH 2/2] cryptsetup: add json-c dependency to host build Baruch Siach
  2017-12-23 22:28 ` [Buildroot] [PATCH 1/2] json-c: build for host Yann E. MORIN
@ 2017-12-26 18:57 ` Peter Korsgaard
  2 siblings, 0 replies; 6+ messages in thread
From: Peter Korsgaard @ 2017-12-26 18:57 UTC (permalink / raw)
  To: buildroot

>>>>> "Baruch" == Baruch Siach <baruch@tkos.co.il> writes:

 > This is needed for the recent cryptsetup version host build.
 > Signed-off-by: Baruch Siach <baruch@tkos.co.il>

Committed, thanks.

-- 
Bye, Peter Korsgaard

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

* [Buildroot] [PATCH 2/2] cryptsetup: add json-c dependency to host build
  2017-12-23 17:43 ` [Buildroot] [PATCH 2/2] cryptsetup: add json-c dependency to host build Baruch Siach
  2017-12-23 22:30   ` Yann E. MORIN
@ 2017-12-26 18:57   ` Peter Korsgaard
  1 sibling, 0 replies; 6+ messages in thread
From: Peter Korsgaard @ 2017-12-26 18:57 UTC (permalink / raw)
  To: buildroot

>>>>> "Baruch" == Baruch Siach <baruch@tkos.co.il> writes:

 > Fixes:
 > http://autobuild.buildroot.net/results/ecf/ecf5d87791e0255c3fce117447105db88749f796/
 > http://autobuild.buildroot.net/results/384/38462d222f2a893d44de894c30dc1e53d09c377d/
 > http://autobuild.buildroot.net/results/c29/c2901415345d94ef2135e460f4c78c21ae7ad09a/
 > ... and many more.

 > Cc: Martin Hicks <mort@bork.org>
 > Signed-off-by: Baruch Siach <baruch@tkos.co.il>

Committed, thanks.

-- 
Bye, Peter Korsgaard

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

end of thread, other threads:[~2017-12-26 18:57 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-12-23 17:43 [Buildroot] [PATCH 1/2] json-c: build for host Baruch Siach
2017-12-23 17:43 ` [Buildroot] [PATCH 2/2] cryptsetup: add json-c dependency to host build Baruch Siach
2017-12-23 22:30   ` Yann E. MORIN
2017-12-26 18:57   ` Peter Korsgaard
2017-12-23 22:28 ` [Buildroot] [PATCH 1/2] json-c: build for host Yann E. MORIN
2017-12-26 18:57 ` 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.