* [Buildroot] [PATCH 1/1] package/systemd: fix build with libmicrohttpd 0.9.71
@ 2020-07-05 11:15 Bernd Kuhls
2020-07-05 12:26 ` Yann E. MORIN
2020-07-20 6:45 ` Peter Korsgaard
0 siblings, 2 replies; 3+ messages in thread
From: Bernd Kuhls @ 2020-07-05 11:15 UTC (permalink / raw)
To: buildroot
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
---
This patch belongs to series
http://patchwork.ozlabs.org/project/buildroot/list/?series=187620
...-Fix-build-with-libmicrohttpd-0.9.71.patch | 71 +++++++++++++++++++
1 file changed, 71 insertions(+)
create mode 100644 package/systemd/0001-Fix-build-with-libmicrohttpd-0.9.71.patch
diff --git a/package/systemd/0001-Fix-build-with-libmicrohttpd-0.9.71.patch b/package/systemd/0001-Fix-build-with-libmicrohttpd-0.9.71.patch
new file mode 100644
index 0000000000..7c1cfe939b
--- /dev/null
+++ b/package/systemd/0001-Fix-build-with-libmicrohttpd-0.9.71.patch
@@ -0,0 +1,71 @@
+From d17eabb1052e7c8c432331a7a782845e36164f01 Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?Zbigniew=20J=C4=99drzejewski-Szmek?= <zbyszek@in.waw.pl>
+Date: Tue, 30 Jun 2020 09:56:10 +0200
+Subject: [PATCH] =?UTF-8?q?Fix=20build=20with=20=C2=B5httpd=200.9.71?=
+MIME-Version: 1.0
+Content-Type: text/plain; charset=UTF-8
+Content-Transfer-Encoding: 8bit
+
+The return type of callbacks was changed from int to an enum.
+
+Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
+[downloaded from upstream commit
+ https://github.com/systemd/systemd/commit/d17eabb1052e7c8c432331a7a782845e36164f01]
+---
+ src/journal-remote/journal-gatewayd.c | 4 ++--
+ src/journal-remote/journal-remote-main.c | 2 +-
+ src/journal-remote/microhttpd-util.h | 6 ++++++
+ 3 files changed, 9 insertions(+), 3 deletions(-)
+
+diff --git a/src/journal-remote/journal-gatewayd.c b/src/journal-remote/journal-gatewayd.c
+index 5177e0d1577..3ab7c98b0b5 100644
+--- a/src/journal-remote/journal-gatewayd.c
++++ b/src/journal-remote/journal-gatewayd.c
+@@ -349,7 +349,7 @@ static int request_parse_range(
+ return 0;
+ }
+
+-static int request_parse_arguments_iterator(
++static mhd_result request_parse_arguments_iterator(
+ void *cls,
+ enum MHD_ValueKind kind,
+ const char *key,
+@@ -796,7 +796,7 @@ static int request_handler_machine(
+ return MHD_queue_response(connection, MHD_HTTP_OK, response);
+ }
+
+-static int request_handler(
++static mhd_result request_handler(
+ void *cls,
+ struct MHD_Connection *connection,
+ const char *url,
+diff --git a/src/journal-remote/journal-remote-main.c b/src/journal-remote/journal-remote-main.c
+index 69a111afead..f82d188a8c6 100644
+--- a/src/journal-remote/journal-remote-main.c
++++ b/src/journal-remote/journal-remote-main.c
+@@ -253,7 +253,7 @@ static int process_http_upload(
+ return mhd_respond(connection, MHD_HTTP_ACCEPTED, "OK.");
+ };
+
+-static int request_handler(
++static mhd_result request_handler(
+ void *cls,
+ struct MHD_Connection *connection,
+ const char *url,
+diff --git a/src/journal-remote/microhttpd-util.h b/src/journal-remote/microhttpd-util.h
+index d90c6bbd4f1..4ca9a5c4f16 100644
+--- a/src/journal-remote/microhttpd-util.h
++++ b/src/journal-remote/microhttpd-util.h
+@@ -47,6 +47,12 @@
+ # define MHD_create_response_from_fd_at_offset64 MHD_create_response_from_fd_at_offset
+ #endif
+
++#if MHD_VERSION >= 0x00097002
++# define mhd_result enum MHD_Result
++#else
++# define mhd_result int
++#endif
++
+ void microhttpd_logger(void *arg, const char *fmt, va_list ap) _printf_(2, 0);
+
+ /* respond_oom() must be usable with return, hence this form. */
--
2.26.2
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [Buildroot] [PATCH 1/1] package/systemd: fix build with libmicrohttpd 0.9.71
2020-07-05 11:15 [Buildroot] [PATCH 1/1] package/systemd: fix build with libmicrohttpd 0.9.71 Bernd Kuhls
@ 2020-07-05 12:26 ` Yann E. MORIN
2020-07-20 6:45 ` Peter Korsgaard
1 sibling, 0 replies; 3+ messages in thread
From: Yann E. MORIN @ 2020-07-05 12:26 UTC (permalink / raw)
To: buildroot
Bernd, All,
On 2020-07-05 13:15 +0200, Bernd Kuhls spake thusly:
> Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Applied to master, thanks.
Regards,
Yann E. MORIN.
> ---
> This patch belongs to series
> http://patchwork.ozlabs.org/project/buildroot/list/?series=187620
>
> ...-Fix-build-with-libmicrohttpd-0.9.71.patch | 71 +++++++++++++++++++
> 1 file changed, 71 insertions(+)
> create mode 100644 package/systemd/0001-Fix-build-with-libmicrohttpd-0.9.71.patch
>
> diff --git a/package/systemd/0001-Fix-build-with-libmicrohttpd-0.9.71.patch b/package/systemd/0001-Fix-build-with-libmicrohttpd-0.9.71.patch
> new file mode 100644
> index 0000000000..7c1cfe939b
> --- /dev/null
> +++ b/package/systemd/0001-Fix-build-with-libmicrohttpd-0.9.71.patch
> @@ -0,0 +1,71 @@
> +From d17eabb1052e7c8c432331a7a782845e36164f01 Mon Sep 17 00:00:00 2001
> +From: =?UTF-8?q?Zbigniew=20J=C4=99drzejewski-Szmek?= <zbyszek@in.waw.pl>
> +Date: Tue, 30 Jun 2020 09:56:10 +0200
> +Subject: [PATCH] =?UTF-8?q?Fix=20build=20with=20=C2=B5httpd=200.9.71?=
> +MIME-Version: 1.0
> +Content-Type: text/plain; charset=UTF-8
> +Content-Transfer-Encoding: 8bit
> +
> +The return type of callbacks was changed from int to an enum.
> +
> +Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
> +[downloaded from upstream commit
> + https://github.com/systemd/systemd/commit/d17eabb1052e7c8c432331a7a782845e36164f01]
> +---
> + src/journal-remote/journal-gatewayd.c | 4 ++--
> + src/journal-remote/journal-remote-main.c | 2 +-
> + src/journal-remote/microhttpd-util.h | 6 ++++++
> + 3 files changed, 9 insertions(+), 3 deletions(-)
> +
> +diff --git a/src/journal-remote/journal-gatewayd.c b/src/journal-remote/journal-gatewayd.c
> +index 5177e0d1577..3ab7c98b0b5 100644
> +--- a/src/journal-remote/journal-gatewayd.c
> ++++ b/src/journal-remote/journal-gatewayd.c
> +@@ -349,7 +349,7 @@ static int request_parse_range(
> + return 0;
> + }
> +
> +-static int request_parse_arguments_iterator(
> ++static mhd_result request_parse_arguments_iterator(
> + void *cls,
> + enum MHD_ValueKind kind,
> + const char *key,
> +@@ -796,7 +796,7 @@ static int request_handler_machine(
> + return MHD_queue_response(connection, MHD_HTTP_OK, response);
> + }
> +
> +-static int request_handler(
> ++static mhd_result request_handler(
> + void *cls,
> + struct MHD_Connection *connection,
> + const char *url,
> +diff --git a/src/journal-remote/journal-remote-main.c b/src/journal-remote/journal-remote-main.c
> +index 69a111afead..f82d188a8c6 100644
> +--- a/src/journal-remote/journal-remote-main.c
> ++++ b/src/journal-remote/journal-remote-main.c
> +@@ -253,7 +253,7 @@ static int process_http_upload(
> + return mhd_respond(connection, MHD_HTTP_ACCEPTED, "OK.");
> + };
> +
> +-static int request_handler(
> ++static mhd_result request_handler(
> + void *cls,
> + struct MHD_Connection *connection,
> + const char *url,
> +diff --git a/src/journal-remote/microhttpd-util.h b/src/journal-remote/microhttpd-util.h
> +index d90c6bbd4f1..4ca9a5c4f16 100644
> +--- a/src/journal-remote/microhttpd-util.h
> ++++ b/src/journal-remote/microhttpd-util.h
> +@@ -47,6 +47,12 @@
> + # define MHD_create_response_from_fd_at_offset64 MHD_create_response_from_fd_at_offset
> + #endif
> +
> ++#if MHD_VERSION >= 0x00097002
> ++# define mhd_result enum MHD_Result
> ++#else
> ++# define mhd_result int
> ++#endif
> ++
> + void microhttpd_logger(void *arg, const char *fmt, va_list ap) _printf_(2, 0);
> +
> + /* respond_oom() must be usable with return, hence this form. */
> --
> 2.26.2
>
> _______________________________________________
> 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 561 099 427 `------------.-------: X AGAINST | \e/ There is no |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL | v conspiracy. |
'------------------------------^-------^------------------^--------------------'
^ permalink raw reply [flat|nested] 3+ messages in thread
* [Buildroot] [PATCH 1/1] package/systemd: fix build with libmicrohttpd 0.9.71
2020-07-05 11:15 [Buildroot] [PATCH 1/1] package/systemd: fix build with libmicrohttpd 0.9.71 Bernd Kuhls
2020-07-05 12:26 ` Yann E. MORIN
@ 2020-07-20 6:45 ` Peter Korsgaard
1 sibling, 0 replies; 3+ messages in thread
From: Peter Korsgaard @ 2020-07-20 6:45 UTC (permalink / raw)
To: buildroot
>>>>> "Bernd" == Bernd Kuhls <bernd.kuhls@t-online.de> writes:
> Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Committed to 2020.02.x and 2020.05.x, thanks.
--
Bye, Peter Korsgaard
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2020-07-20 6:45 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-07-05 11:15 [Buildroot] [PATCH 1/1] package/systemd: fix build with libmicrohttpd 0.9.71 Bernd Kuhls
2020-07-05 12:26 ` Yann E. MORIN
2020-07-20 6:45 ` Peter Korsgaard
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox