All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/4] package/rsyslog: add czmq optional dependency
@ 2022-06-19 16:46 Fabrice Fontaine
  2022-06-19 16:46 ` [Buildroot] [PATCH 2/4] package/rsyslog: add rabbitmq-c " Fabrice Fontaine
                   ` (4 more replies)
  0 siblings, 5 replies; 9+ messages in thread
From: Fabrice Fontaine @ 2022-06-19 16:46 UTC (permalink / raw)
  To: buildroot; +Cc: Matt Weber, Fabrice Fontaine

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

diff --git a/package/rsyslog/rsyslog.mk b/package/rsyslog/rsyslog.mk
index 7fdc7316b7..400fc6b99c 100644
--- a/package/rsyslog/rsyslog.mk
+++ b/package/rsyslog/rsyslog.mk
@@ -59,6 +59,13 @@ else
 RSYSLOG_CONF_OPTS += --disable-imhttp
 endif
 
+ifeq ($(BR2_PACKAGE_CZMQ),y)
+RSYSLOG_DEPENDENCIES += czmq
+RSYSLOG_CONF_OPTS += --enable-imczmq --enable-omczmq
+else
+RSYSLOG_CONF_OPTS += --disable-imczmq --disable-omczmq
+endif
+
 ifeq ($(BR2_PACKAGE_GNUTLS),y)
 RSYSLOG_DEPENDENCIES += gnutls
 RSYSLOG_CONF_OPTS += --enable-gnutls
-- 
2.35.1

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

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

* [Buildroot] [PATCH 2/4] package/rsyslog: add rabbitmq-c optional dependency
  2022-06-19 16:46 [Buildroot] [PATCH 1/4] package/rsyslog: add czmq optional dependency Fabrice Fontaine
@ 2022-06-19 16:46 ` Fabrice Fontaine
  2022-08-16  8:53   ` Peter Korsgaard
  2022-06-19 16:46 ` [Buildroot] [PATCH 3/4] package/rsyslog: add qpid-proton " Fabrice Fontaine
                   ` (3 subsequent siblings)
  4 siblings, 1 reply; 9+ messages in thread
From: Fabrice Fontaine @ 2022-06-19 16:46 UTC (permalink / raw)
  To: buildroot; +Cc: Matt Weber, Fabrice Fontaine

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

diff --git a/package/rsyslog/rsyslog.mk b/package/rsyslog/rsyslog.mk
index 400fc6b99c..1aa2256062 100644
--- a/package/rsyslog/rsyslog.mk
+++ b/package/rsyslog/rsyslog.mk
@@ -111,6 +111,13 @@ else
 RSYSLOG_CONF_OPTS += --disable-pgsql
 endif
 
+ifeq ($(BR2_PACKAGE_RABBITMQ_C),y)
+RSYSLOG_DEPENDENCIES += rabbitmq-c
+RSYSLOG_CONF_OPTS += --enable-omrabbitmq
+else
+RSYSLOG_CONF_OPTS += --disable-omrabbitmq
+endif
+
 ifeq ($(BR2_PACKAGE_UTIL_LINUX_LIBUUID),y)
 RSYSLOG_DEPENDENCIES += util-linux
 RSYSLOG_CONF_OPTS += --enable-uuid
-- 
2.35.1

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

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

* [Buildroot] [PATCH 3/4] package/rsyslog: add qpid-proton optional dependency
  2022-06-19 16:46 [Buildroot] [PATCH 1/4] package/rsyslog: add czmq optional dependency Fabrice Fontaine
  2022-06-19 16:46 ` [Buildroot] [PATCH 2/4] package/rsyslog: add rabbitmq-c " Fabrice Fontaine
@ 2022-06-19 16:46 ` Fabrice Fontaine
  2022-08-16  8:53   ` Peter Korsgaard
  2022-06-19 16:46 ` [Buildroot] [PATCH 4/4] package/rsyslog: add libmaxminddb " Fabrice Fontaine
                   ` (2 subsequent siblings)
  4 siblings, 1 reply; 9+ messages in thread
From: Fabrice Fontaine @ 2022-06-19 16:46 UTC (permalink / raw)
  To: buildroot; +Cc: Matt Weber, Fabrice Fontaine

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

diff --git a/package/rsyslog/rsyslog.mk b/package/rsyslog/rsyslog.mk
index 1aa2256062..1fa03bf135 100644
--- a/package/rsyslog/rsyslog.mk
+++ b/package/rsyslog/rsyslog.mk
@@ -111,6 +111,13 @@ else
 RSYSLOG_CONF_OPTS += --disable-pgsql
 endif
 
+ifeq ($(BR2_PACKAGE_QPID_PROTON),y)
+RSYSLOG_DEPENDENCIES += qpid-proton
+RSYSLOG_CONF_OPTS += --enable-omamqp1
+else
+RSYSLOG_CONF_OPTS += --disable-omamqp1
+endif
+
 ifeq ($(BR2_PACKAGE_RABBITMQ_C),y)
 RSYSLOG_DEPENDENCIES += rabbitmq-c
 RSYSLOG_CONF_OPTS += --enable-omrabbitmq
-- 
2.35.1

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

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

* [Buildroot] [PATCH 4/4] package/rsyslog: add libmaxminddb optional dependency
  2022-06-19 16:46 [Buildroot] [PATCH 1/4] package/rsyslog: add czmq optional dependency Fabrice Fontaine
  2022-06-19 16:46 ` [Buildroot] [PATCH 2/4] package/rsyslog: add rabbitmq-c " Fabrice Fontaine
  2022-06-19 16:46 ` [Buildroot] [PATCH 3/4] package/rsyslog: add qpid-proton " Fabrice Fontaine
@ 2022-06-19 16:46 ` Fabrice Fontaine
  2022-08-16  8:53   ` Peter Korsgaard
  2022-07-23 19:07 ` [Buildroot] [PATCH 1/4] package/rsyslog: add czmq " Arnout Vandecappelle
  2022-08-16  8:53 ` Peter Korsgaard
  4 siblings, 1 reply; 9+ messages in thread
From: Fabrice Fontaine @ 2022-06-19 16:46 UTC (permalink / raw)
  To: buildroot; +Cc: Matt Weber, Fabrice Fontaine

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

diff --git a/package/rsyslog/rsyslog.mk b/package/rsyslog/rsyslog.mk
index 1fa03bf135..741d090d55 100644
--- a/package/rsyslog/rsyslog.mk
+++ b/package/rsyslog/rsyslog.mk
@@ -88,6 +88,13 @@ else
 RSYSLOG_CONF_OPTS += --disable-libgcrypt
 endif
 
+ifeq ($(BR2_PACKAGE_LIBMAXMINDDB),y)
+RSYSLOG_DEPENDENCIES += libmaxminddb
+RSYSLOG_CONF_OPTS += --enable-mmdblookup
+else
+RSYSLOG_CONF_OPTS += --disable-mmdblookup
+endif
+
 ifeq ($(BR2_PACKAGE_LIBPCAP),y)
 RSYSLOG_DEPENDENCIES += libpcap
 RSYSLOG_CONF_OPTS += --enable-impcap
-- 
2.35.1

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

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

* Re: [Buildroot] [PATCH 1/4] package/rsyslog: add czmq optional dependency
  2022-06-19 16:46 [Buildroot] [PATCH 1/4] package/rsyslog: add czmq optional dependency Fabrice Fontaine
                   ` (2 preceding siblings ...)
  2022-06-19 16:46 ` [Buildroot] [PATCH 4/4] package/rsyslog: add libmaxminddb " Fabrice Fontaine
@ 2022-07-23 19:07 ` Arnout Vandecappelle
  2022-08-16  8:53 ` Peter Korsgaard
  4 siblings, 0 replies; 9+ messages in thread
From: Arnout Vandecappelle @ 2022-07-23 19:07 UTC (permalink / raw)
  To: Fabrice Fontaine, buildroot; +Cc: Matt Weber



On 19/06/2022 18:46, Fabrice Fontaine wrote:
> Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>

  Applied all 4 to master, thanks.

  Regards,
  Arnout

> ---
>   package/rsyslog/rsyslog.mk | 7 +++++++
>   1 file changed, 7 insertions(+)
> 
> diff --git a/package/rsyslog/rsyslog.mk b/package/rsyslog/rsyslog.mk
> index 7fdc7316b7..400fc6b99c 100644
> --- a/package/rsyslog/rsyslog.mk
> +++ b/package/rsyslog/rsyslog.mk
> @@ -59,6 +59,13 @@ else
>   RSYSLOG_CONF_OPTS += --disable-imhttp
>   endif
>   
> +ifeq ($(BR2_PACKAGE_CZMQ),y)
> +RSYSLOG_DEPENDENCIES += czmq
> +RSYSLOG_CONF_OPTS += --enable-imczmq --enable-omczmq
> +else
> +RSYSLOG_CONF_OPTS += --disable-imczmq --disable-omczmq
> +endif
> +
>   ifeq ($(BR2_PACKAGE_GNUTLS),y)
>   RSYSLOG_DEPENDENCIES += gnutls
>   RSYSLOG_CONF_OPTS += --enable-gnutls
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

* Re: [Buildroot] [PATCH 1/4] package/rsyslog: add czmq optional dependency
  2022-06-19 16:46 [Buildroot] [PATCH 1/4] package/rsyslog: add czmq optional dependency Fabrice Fontaine
                   ` (3 preceding siblings ...)
  2022-07-23 19:07 ` [Buildroot] [PATCH 1/4] package/rsyslog: add czmq " Arnout Vandecappelle
@ 2022-08-16  8:53 ` Peter Korsgaard
  4 siblings, 0 replies; 9+ messages in thread
From: Peter Korsgaard @ 2022-08-16  8:53 UTC (permalink / raw)
  To: Fabrice Fontaine; +Cc: Matt Weber, 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] 9+ messages in thread

* Re: [Buildroot] [PATCH 2/4] package/rsyslog: add rabbitmq-c optional dependency
  2022-06-19 16:46 ` [Buildroot] [PATCH 2/4] package/rsyslog: add rabbitmq-c " Fabrice Fontaine
@ 2022-08-16  8:53   ` Peter Korsgaard
  0 siblings, 0 replies; 9+ messages in thread
From: Peter Korsgaard @ 2022-08-16  8:53 UTC (permalink / raw)
  To: Fabrice Fontaine; +Cc: Matt Weber, 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] 9+ messages in thread

* Re: [Buildroot] [PATCH 3/4] package/rsyslog: add qpid-proton optional dependency
  2022-06-19 16:46 ` [Buildroot] [PATCH 3/4] package/rsyslog: add qpid-proton " Fabrice Fontaine
@ 2022-08-16  8:53   ` Peter Korsgaard
  0 siblings, 0 replies; 9+ messages in thread
From: Peter Korsgaard @ 2022-08-16  8:53 UTC (permalink / raw)
  To: Fabrice Fontaine; +Cc: Matt Weber, 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] 9+ messages in thread

* Re: [Buildroot] [PATCH 4/4] package/rsyslog: add libmaxminddb optional dependency
  2022-06-19 16:46 ` [Buildroot] [PATCH 4/4] package/rsyslog: add libmaxminddb " Fabrice Fontaine
@ 2022-08-16  8:53   ` Peter Korsgaard
  0 siblings, 0 replies; 9+ messages in thread
From: Peter Korsgaard @ 2022-08-16  8:53 UTC (permalink / raw)
  To: Fabrice Fontaine; +Cc: Matt Weber, 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] 9+ messages in thread

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

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-06-19 16:46 [Buildroot] [PATCH 1/4] package/rsyslog: add czmq optional dependency Fabrice Fontaine
2022-06-19 16:46 ` [Buildroot] [PATCH 2/4] package/rsyslog: add rabbitmq-c " Fabrice Fontaine
2022-08-16  8:53   ` Peter Korsgaard
2022-06-19 16:46 ` [Buildroot] [PATCH 3/4] package/rsyslog: add qpid-proton " Fabrice Fontaine
2022-08-16  8:53   ` Peter Korsgaard
2022-06-19 16:46 ` [Buildroot] [PATCH 4/4] package/rsyslog: add libmaxminddb " Fabrice Fontaine
2022-08-16  8:53   ` Peter Korsgaard
2022-07-23 19:07 ` [Buildroot] [PATCH 1/4] package/rsyslog: add czmq " Arnout Vandecappelle
2022-08-16  8:53 ` 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.