From: Bernd Kuhls <bernd@kuhls.net>
To: buildroot@buildroot.org
Cc: "André Zwing" <nerv@dawncrow.de>,
"Jérôme Pouiller" <jezz@sysmic.org>,
"Pieter De Gendt" <pieter.degendt@gmail.com>,
"Petr Vorel" <petr.vorel@gmail.com>,
"Thomas Petazzoni" <thomas.petazzoni@bootlin.com>,
"Adrian Perez de Castro" <aperez@igalia.com>,
"Giulio Benetti" <giulio.benetti@benettiengineering.com>,
"Romain Naour" <romain.naour@gmail.com>
Subject: [Buildroot] [PATCH v2 08/14] package/links: Fix build with glibc 2.43
Date: Thu, 5 Mar 2026 22:09:43 +0100 [thread overview]
Message-ID: <20260305210950.3471974-9-bernd@kuhls.net> (raw)
In-Reply-To: <20260305210950.3471974-1-bernd@kuhls.net>
Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
---
package/links/0001-glibc-2.43.patch | 27 +++++++++++++++++++++++++++
1 file changed, 27 insertions(+)
create mode 100644 package/links/0001-glibc-2.43.patch
diff --git a/package/links/0001-glibc-2.43.patch b/package/links/0001-glibc-2.43.patch
new file mode 100644
index 0000000000..73bd330c7a
--- /dev/null
+++ b/package/links/0001-glibc-2.43.patch
@@ -0,0 +1,27 @@
+Fix build with glibc 2.43
+
+https://bugs.gentoo.org/969617
+https://gitlab.exherbo.org/exherbo/arbor/-/raw/45d1f0e764ad1fcb8d776534d0925fe074d04d61/packages/net-www/links/files/links-2.30-glibc-2.43.patch
+
+Source: https://www.linuxfromscratch.org/blfs/view/svn/basicnet/links.html
+Reason: Fix build with glibc 2.43
+
+Downloaded from
+https://gitweb.gentoo.org/repo/gentoo.git/tree/www-client/links/files/links-2.30-glibc-2.43-const.patch?id=ad9dd078c5473b947f237136746cd1c3933ae494
+
+Upstream: Sent via email to project maintainers
+
+Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
+
+--- a/ftp.c
++++ b/ftp.c
+@@ -768,7 +768,7 @@
+ } while (0)
+ A(ftp_head);
+ ud = stracpy(get_url_data(c->url));
+- if (strchr(cast_const_char ud, POST_CHAR)) *strchr(cast_const_char ud, POST_CHAR) = 0;
++ if (strchr(cast_char ud, POST_CHAR)) *strchr(cast_char ud, POST_CHAR) = 0;
+ s0 = init_str();
+ s0l = 0;
+ add_conv_str(&s0, &s0l, ud, (int)strlen(cast_const_char ud), -1);
+
--
2.47.3
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
next prev parent reply other threads:[~2026-03-05 21:11 UTC|newest]
Thread overview: 18+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-03-05 21:09 [Buildroot] [PATCH v2 00/14] package/{glibc, localedef}: bump version to 2.43 Bernd Kuhls
2026-03-05 21:09 ` [Buildroot] [PATCH v2 01/14] package/socat: bump version to 1.8.1.1 Bernd Kuhls
2026-03-06 18:41 ` Julien Olivain via buildroot
2026-03-05 21:09 ` [Buildroot] [PATCH v2 02/14] package/lxc: bump version to 6.0.6 Bernd Kuhls
2026-03-05 21:09 ` [Buildroot] [PATCH v2 03/14] package/foot: bump version to 1.26.0 Bernd Kuhls
2026-03-05 21:09 ` [Buildroot] [PATCH v2 04/14] package/libkrb5: fix build with glibc 2.43 Bernd Kuhls
2026-03-05 21:09 ` [Buildroot] [PATCH v2 05/14] package/wlroots: " Bernd Kuhls
2026-03-05 21:09 ` [Buildroot] [PATCH v2 06/14] package/ntp: " Bernd Kuhls
2026-03-05 21:09 ` [Buildroot] [PATCH v2 07/14] package/waffle: " Bernd Kuhls
2026-03-05 21:09 ` Bernd Kuhls [this message]
2026-03-05 21:09 ` [Buildroot] [PATCH v2 09/14] package/ltp-testsuite: " Bernd Kuhls
2026-03-05 21:09 ` [Buildroot] [PATCH v2 10/14] package/libvips: " Bernd Kuhls
2026-03-05 21:09 ` [Buildroot] [PATCH v2 11/14] package/freeswitch: disable mod_enum to " Bernd Kuhls
2026-03-05 21:09 ` [Buildroot] [PATCH v2 12/14] DEVELOPERS: remove Bernd Kuhls from libldns Bernd Kuhls
2026-03-14 7:53 ` Thomas Perale via buildroot
2026-03-05 21:09 ` [Buildroot] [PATCH v2 13/14] package/gcc/15.2.0: fix build with glibc 2.43 Bernd Kuhls
2026-03-05 21:09 ` [Buildroot] [PATCH v2 14/14] package/{glibc, localedef}: bump version to 2.43 Bernd Kuhls
2026-03-06 18:45 ` Julien Olivain via buildroot
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20260305210950.3471974-9-bernd@kuhls.net \
--to=bernd@kuhls.net \
--cc=aperez@igalia.com \
--cc=buildroot@buildroot.org \
--cc=giulio.benetti@benettiengineering.com \
--cc=jezz@sysmic.org \
--cc=nerv@dawncrow.de \
--cc=petr.vorel@gmail.com \
--cc=pieter.degendt@gmail.com \
--cc=romain.naour@gmail.com \
--cc=thomas.petazzoni@bootlin.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox