From 0227b8c066a244972567f374d063a52b91c427be Mon Sep 17 00:00:00 2001 From: Joost Molenaar Date: Thu, 6 Jun 2024 11:53:40 +0200 Subject: [PATCH] Apply patch from PR 8901 See https://github.com/fluent/fluent-bit/pull/8901 --- .SRCINFO | 3 +++ PKGBUILD | 13 +++++++++--- pr-8901.patch | 56 +++++++++++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 69 insertions(+), 3 deletions(-) create mode 100644 pr-8901.patch diff --git a/.SRCINFO b/.SRCINFO index 333f0a59ef94..16da1ee162c7 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -23,7 +23,10 @@ pkgbase = fluent-bit backup = etc/fluent-bit/fluent-bit.conf backup = etc/fluent-bit/parsers.conf source = fluent-bit-3.0.2.tar.gz::https://releases.fluentbit.io/3.0/source-3.0.2.tar.gz + source = pr-8901.patch md5sums = 6c8ed6033a0405bf41a0d28af4c57d90 + md5sums = SKIP sha256sums = 1ebe15d48db1e6a06545e6ffc788d0eb82d74923f8ca6a6e53b327c8e3011b6f + sha256sums = SKIP pkgname = fluent-bit diff --git a/PKGBUILD b/PKGBUILD index 3905564f3d05..c677679a8db5 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -31,10 +31,15 @@ backup=('etc/fluent-bit/fluent-bit.conf' options=() install= changelog= -source=("$pkgname-$pkgver.tar.gz::https://releases.fluentbit.io/${pkgver%.*}/source-$pkgver.tar.gz") +source=("$pkgname-$pkgver.tar.gz::https://releases.fluentbit.io/${pkgver%.*}/source-$pkgver.tar.gz" + pr-8901.patch) noextract=() validpgpkeys=() +prepare() { + patch -p1 < pr-8901.patch +} + build() { cd "$srcdir/build" cmake \ @@ -71,5 +76,7 @@ package() { } # r!. %; curl -s https://releases.fluentbit.io/${pkgver\%.*}/source-$pkgver.tar.gz.{md5,sha256} | awk '{print $1}' -md5sums=('6c8ed6033a0405bf41a0d28af4c57d90') -sha256sums=('1ebe15d48db1e6a06545e6ffc788d0eb82d74923f8ca6a6e53b327c8e3011b6f') +md5sums=('6c8ed6033a0405bf41a0d28af4c57d90' + 'SKIP') +sha256sums=('1ebe15d48db1e6a06545e6ffc788d0eb82d74923f8ca6a6e53b327c8e3011b6f' + 'SKIP') diff --git a/pr-8901.patch b/pr-8901.patch new file mode 100644 index 000000000000..0dbfbd032665 --- /dev/null +++ b/pr-8901.patch @@ -0,0 +1,56 @@ +From 33690ee3fd6ad97f3f1917a1a91bd4c4f1f235d6 Mon Sep 17 00:00:00 2001 +From: javex +Date: Fri, 31 May 2024 21:25:38 +0930 +Subject: [PATCH 1/2] tls: Type cast explicitly for OpenSSL + +With the release of GCC 14.1, some previous warnings are now errors, +including the SSL_select_next_proto call in +tls_context_server_alpn_select_callback. To fix the build, add +explicitly type cast. + +Signed-off-by: javex +--- + src/tls/openssl.c | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/src/tls/openssl.c b/src/tls/openssl.c +index 14b77e09c6a..03aeb9610b7 100644 +--- a/src/tls/openssl.c ++++ b/src/tls/openssl.c +@@ -217,7 +217,7 @@ static int tls_context_server_alpn_select_callback(SSL *ssl, + result = SSL_TLSEXT_ERR_NOACK; + + if (ctx->alpn != NULL) { +- result = SSL_select_next_proto(out, ++ result = SSL_select_next_proto((unsigned char **) out, + outlen, + &ctx->alpn[1], + (unsigned int) ctx->alpn[0], + +From 944bb0ce680c6f92c20fddfb7442a19e4cfe0a36 Mon Sep 17 00:00:00 2001 +From: javex +Date: Fri, 31 May 2024 21:27:57 +0930 +Subject: [PATCH 2/2] in_kubernetes_events: Type cast explicitly + +With the release of GCC 14.1, some previous warnings are now errors, +including the check_event_is_filtered call in +process_events. To fix the build, add explicitly type cast. + +Signed-off-by: javex +--- + plugins/in_kubernetes_events/kubernetes_events.c | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/plugins/in_kubernetes_events/kubernetes_events.c b/plugins/in_kubernetes_events/kubernetes_events.c +index 6231becb0ad..22a69b65af4 100644 +--- a/plugins/in_kubernetes_events/kubernetes_events.c ++++ b/plugins/in_kubernetes_events/kubernetes_events.c +@@ -487,7 +487,7 @@ static int process_events(struct k8s_events *ctx, char *in_data, size_t in_size, + goto msg_error; + } + +- if (check_event_is_filtered(ctx, item, &ts) == FLB_TRUE) { ++ if (check_event_is_filtered(ctx, item, (time_t *) &ts) == FLB_TRUE) { + continue; + } +