All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/2] package/bind: add libidn2 optional dependency
@ 2022-07-23 20:59 Fabrice Fontaine
  2022-07-23 20:59 ` [Buildroot] [PATCH 2/2] package/bind: add json-c " Fabrice Fontaine
                   ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: Fabrice Fontaine @ 2022-07-23 20:59 UTC (permalink / raw)
  To: buildroot; +Cc: Fabrice Fontaine

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
---
 package/bind/bind.mk | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/package/bind/bind.mk b/package/bind/bind.mk
index 1646fc6237..86049d3648 100644
--- a/package/bind/bind.mk
+++ b/package/bind/bind.mk
@@ -54,6 +54,13 @@ else
 BIND_CONF_OPTS += --disable-linux-caps
 endif
 
+ifeq ($(BR2_PACKAGE_LIBIDN2),y)
+BIND_CONF_OPTS += --with-libidn2
+BIND_DEPENDENCIES += libidn2
+else
+BIND_CONF_OPTS += --without-libidn2
+endif
+
 ifeq ($(BR2_PACKAGE_LIBKRB5),y)
 BIND_CONF_OPTS += --with-gssapi=$(STAGING_DIR)/usr/bin/krb5-config
 BIND_DEPENDENCIES += libkrb5
-- 
2.35.1

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

* [Buildroot] [PATCH 2/2] package/bind: add json-c optional dependency
  2022-07-23 20:59 [Buildroot] [PATCH 1/2] package/bind: add libidn2 optional dependency Fabrice Fontaine
@ 2022-07-23 20:59 ` Fabrice Fontaine
  2022-08-16 20:09   ` Peter Korsgaard
  2022-07-24  9:19 ` [Buildroot] [PATCH 1/2] package/bind: add libidn2 " Arnout Vandecappelle
  2022-08-16 20:09 ` Peter Korsgaard
  2 siblings, 1 reply; 5+ messages in thread
From: Fabrice Fontaine @ 2022-07-23 20:59 UTC (permalink / raw)
  To: buildroot; +Cc: Fabrice Fontaine

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
---
 package/bind/bind.mk | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/package/bind/bind.mk b/package/bind/bind.mk
index 86049d3648..bd12f7ad31 100644
--- a/package/bind/bind.mk
+++ b/package/bind/bind.mk
@@ -33,7 +33,6 @@ BIND_CONF_ENV = \
 BIND_CONF_OPTS = \
 	--without-cmocka \
 	--without-lmdb \
-	--with-json-c=no \
 	--enable-epoll \
 	--disable-backtrace \
 	--with-openssl=$(STAGING_DIR)/usr
@@ -47,6 +46,13 @@ else
 BIND_CONF_OPTS += --without-zlib
 endif
 
+ifeq ($(BR2_PACKAGE_JSON_C),y)
+BIND_CONF_OPTS += --with-json-c
+BIND_DEPENDENCIES += json-c
+else
+BIND_CONF_OPTS += --without-json-c
+endif
+
 ifeq ($(BR2_PACKAGE_LIBCAP),y)
 BIND_CONF_OPTS += --enable-linux-caps
 BIND_DEPENDENCIES += libcap
-- 
2.35.1

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

* Re: [Buildroot] [PATCH 1/2] package/bind: add libidn2 optional dependency
  2022-07-23 20:59 [Buildroot] [PATCH 1/2] package/bind: add libidn2 optional dependency Fabrice Fontaine
  2022-07-23 20:59 ` [Buildroot] [PATCH 2/2] package/bind: add json-c " Fabrice Fontaine
@ 2022-07-24  9:19 ` Arnout Vandecappelle
  2022-08-16 20:09 ` Peter Korsgaard
  2 siblings, 0 replies; 5+ messages in thread
From: Arnout Vandecappelle @ 2022-07-24  9:19 UTC (permalink / raw)
  To: Fabrice Fontaine, buildroot



On 23/07/2022 22:59, Fabrice Fontaine wrote:
> Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>

  Applied both to master, thanks.

  Regards,
  Arnout

> ---
>   package/bind/bind.mk | 7 +++++++
>   1 file changed, 7 insertions(+)
> 
> diff --git a/package/bind/bind.mk b/package/bind/bind.mk
> index 1646fc6237..86049d3648 100644
> --- a/package/bind/bind.mk
> +++ b/package/bind/bind.mk
> @@ -54,6 +54,13 @@ else
>   BIND_CONF_OPTS += --disable-linux-caps
>   endif
>   
> +ifeq ($(BR2_PACKAGE_LIBIDN2),y)
> +BIND_CONF_OPTS += --with-libidn2
> +BIND_DEPENDENCIES += libidn2
> +else
> +BIND_CONF_OPTS += --without-libidn2
> +endif
> +
>   ifeq ($(BR2_PACKAGE_LIBKRB5),y)
>   BIND_CONF_OPTS += --with-gssapi=$(STAGING_DIR)/usr/bin/krb5-config
>   BIND_DEPENDENCIES += libkrb5
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

* Re: [Buildroot] [PATCH 1/2] package/bind: add libidn2 optional dependency
  2022-07-23 20:59 [Buildroot] [PATCH 1/2] package/bind: add libidn2 optional dependency Fabrice Fontaine
  2022-07-23 20:59 ` [Buildroot] [PATCH 2/2] package/bind: add json-c " Fabrice Fontaine
  2022-07-24  9:19 ` [Buildroot] [PATCH 1/2] package/bind: add libidn2 " Arnout Vandecappelle
@ 2022-08-16 20:09 ` Peter Korsgaard
  2 siblings, 0 replies; 5+ messages in thread
From: Peter Korsgaard @ 2022-08-16 20:09 UTC (permalink / raw)
  To: Fabrice Fontaine; +Cc: buildroot

>>>>> "Fabrice" == Fabrice Fontaine <fontaine.fabrice@gmail.com> writes:

 > Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>

Committed to 2022.05.x and 2022.02.x, thanks.

-- 
Bye, Peter Korsgaard
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

* Re: [Buildroot] [PATCH 2/2] package/bind: add json-c optional dependency
  2022-07-23 20:59 ` [Buildroot] [PATCH 2/2] package/bind: add json-c " Fabrice Fontaine
@ 2022-08-16 20:09   ` Peter Korsgaard
  0 siblings, 0 replies; 5+ messages in thread
From: Peter Korsgaard @ 2022-08-16 20:09 UTC (permalink / raw)
  To: Fabrice Fontaine; +Cc: buildroot

>>>>> "Fabrice" == Fabrice Fontaine <fontaine.fabrice@gmail.com> writes:

 > Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>

Committed to 2022.05.x and 2022.02.x, thanks.

-- 
Bye, Peter Korsgaard
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

end of thread, other threads:[~2022-08-16 20:09 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-07-23 20:59 [Buildroot] [PATCH 1/2] package/bind: add libidn2 optional dependency Fabrice Fontaine
2022-07-23 20:59 ` [Buildroot] [PATCH 2/2] package/bind: add json-c " Fabrice Fontaine
2022-08-16 20:09   ` Peter Korsgaard
2022-07-24  9:19 ` [Buildroot] [PATCH 1/2] package/bind: add libidn2 " Arnout Vandecappelle
2022-08-16 20:09 ` 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.