Re: [PATCH 1/2] Add config.h to lwip translator

2018-04-30 Thread Samuel Thibault
Joan Lledó, le lun. 30 avril 2018 12:43:23 +0200, a ecrit: > --- > lwip/config.h | 4 > 1 file changed, 4 insertions(+) > create mode 100644 lwip/config.h > > diff --git a/lwip/config.h b/lwip/config.h > new file mode 100644 > index ..262e3590 > --- /dev/null > +++ b/lwip/config.h

Lwip translator updates for working with lwip 2.0.3

2018-04-30 Thread Joan Lledó
I've got two patches for the lwip translator. The first patch only creates a new config.h file in the lwip/ folder. I'm not sure whether this is really required (should config.h be generated?) but I cannot compile the translator without it. So just ignore it if this is only my problem. The

[PATCH 1/2] Add config.h to lwip translator

2018-04-30 Thread Joan Lledó
--- lwip/config.h | 4 1 file changed, 4 insertions(+) create mode 100644 lwip/config.h diff --git a/lwip/config.h b/lwip/config.h new file mode 100644 index ..262e3590 --- /dev/null +++ b/lwip/config.h @@ -0,0 +1,4 @@ +#define __KERNEL__ 1 +#undef __SMP__ + +#define _HURD_

[PATCH 2/2] Include required sockets headers

2018-04-30 Thread Joan Lledó
--- lwip/iioctl-ops.c | 1 + lwip/lwip-util.c| 1 + lwip/pfinet-ops.c | 2 ++ lwip/port/netif/hurdethif.c | 2 ++ 4 files changed, 6 insertions(+) diff --git a/lwip/iioctl-ops.c b/lwip/iioctl-ops.c index fcb7e872..6d3b6cb9 100644 --- a/lwip/iioctl-ops.c +++