Re: dhcpcd: FTBFS on Hurd

2023-11-25 Thread Joan Lledó
Hi Martin-Éric, you can write me for help when you need it. Regards On 24/11/23 6:50, Martin-Éric Racine wrote: Greetings, As dhcpcd is slated to replace dhclient as the default DHCP client in Debian, I've been trying to fix the build on Hurd, which is the only architecture that has

Re: Xorg news

2022-08-23 Thread Joan Lledó
Hi, El 23/8/22 a les 19:30, Samuel Thibault ha escrit: And also, I have just uploaded version 0.16-3+hurd.of libpciaccess. The issue was that the map_legacy method was completely broken. What was the problem with it? Ideally it'd be able to use the map_region method, Do you mean

Re: Debian GNU/Hurd 2019 released!

2019-07-14 Thread Joan Lledó
> This is what was installed from the Debian GNU/Hurd 2019 release. I > simply downloaded the first CD and then fetched the rest over the net. Yeah, I've tried and have the same error too. I don't know the problem but I fixed it by downloading the Hurd from sources and compiling the lwip

Re: Debian GNU/Hurd 2019 released!

2019-07-09 Thread Joan Lledó
> Is that this stack? https://en.wikipedia.org/wiki/LwIP > > How is it possible to switch to it? > You must install the liblwip0 package, and then just use the same parameters you use with pfinet, for instance: # settrans -fgap /hurd/lwip /servers/socket/2 -6 /servers/socket/26 -i /dev/eth0 -a

Re: lwip is in

2018-06-12 Thread Joan Lledó
> Since the lwip package got accepted Great! :) I found a bug that prevents using ssh, I hope I have the time to fix it soon...

Re: Lwip 2.0.3 patches

2018-05-05 Thread Joan Lledó
> > - Not intended to be upstream > > autoconf > > port > Why not? About port, it includes some stack configuration which is only valid for us. About autoconf, the stack is distributed without any build system and the user is expected to provide its own solution. They have a repo called

[PATCH 5/7] POLL: New patch implementing poll()

2018-04-30 Thread Joan Lledó
--- debian/patches/poll | 518 1 file changed, 518 insertions(+) create mode 100644 debian/patches/poll diff --git a/debian/patches/poll b/debian/patches/poll new file mode 100644 index 000..b85ae06 --- /dev/null +++ b/debian/patches/poll

[PATCH 6/7] MAX_SOCKETS: New patch implementing unlimited number of sockets

2018-04-30 Thread Joan Lledó
--- debian/patches/max_sockets | 247 + 1 file changed, 247 insertions(+) create mode 100644 debian/patches/max_sockets diff --git a/debian/patches/max_sockets b/debian/patches/max_sockets new file mode 100644 index 000..bdc7293 --- /dev/null +++

[PATCH 2/7] POSIX: Allow enabling/disabling POSIX sockets

2018-04-30 Thread Joan Lledó
IP6ADDR_STRLEN_MAX - #endif - #endif -+#endif +--- /dev/null b/port/include/posix/inet.h +@@ -0,0 +1,63 @@ ++/* ++ Copyright (C) 2018 Free Software Foundation, Inc. ++ Written by Joan Lledó. ++ ++ This file is part of the GNU Hurd. ++ ++ The GNU Hurd is free software; you can redistribute it

[PATCH 4/7] BUG-36167: Implement the upstream solution

2018-04-30 Thread Joan Lledó
@@ -commit 4d624d8c4f47d06a6fdc82cb6737c06f4e69804c -Author: Joan Lledó <jlle...@member.fsf.org> -Date: Sat Nov 11 08:37:28 2017 +0100 - -Fix bug #36167 in lwip - -https://savannah.nongnu.org/bugs/?36167 - -diff --git a/src/core/tcp.c b/src/core/tcp.c -index 75be86b..17a51a8

[PATCH 7/7] Update series file

2018-04-30 Thread Joan Lledó
--- debian/patches/series | 8 +--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/debian/patches/series b/debian/patches/series index 215fefd..7d92024 100644 --- a/debian/patches/series +++ b/debian/patches/series @@ -1,5 +1,7 @@ -bug-36167 --binary port -autoconf -errno

[PATCH 1/7] PORT: Solved some bugs on timed waits

2018-04-30 Thread Joan Lledó
: lwip/port/include/arch/cc.h -=== --- /dev/null -+++ lwip/port/include/arch/cc.h -@@ -0,0 +1,77 @@ b/port/include/arch/cc.h +@@ -0,0 +1,68 @@ +/* + Copyright (C) 2017 Free Software Foundation, Inc. + Written by Joan Lledó

[PATCH 3/7] AUTOCONF: Adapt the patch to its new position in series

2018-04-30 Thread Joan Lledó
--- debian/patches/autoconf | 164 ++-- 1 file changed, 90 insertions(+), 74 deletions(-) diff --git a/debian/patches/autoconf b/debian/patches/autoconf index aae4ac5..b305e40 100644 --- a/debian/patches/autoconf +++ b/debian/patches/autoconf @@ -1,45

Lwip 2.0.3 patches

2018-04-30 Thread Joan Lledó
Hello, I've been working on the lwip package and have some patches for the release 2.0.3. These patches include: - Solve some bugs on the PORT patch. - Create a new macro wich allows the user to choose between POSIX or lwip native socket headers. - Solve the bug 36167 using the same solution