Samuel Thibault, le sam. 10 août 2019 00:48:04 +0200, a ecrit: > Joan Lledó, le sam. 22 juin 2019 11:50:57 +0200, a ecrit: > > I updated some patches for the lwip debian package, mostly bug-fixing, > > but I also had to add a new patch to implement a new function required > > for the translator [1]. > > I have applied them in the debian repo and uploaded as 2.1.2-2, thanks!
It seems to have a few build issues on some archs: https://buildd.debian.org/status/package.php?p=lwip /<<PKGBUILDDIR>>/port/netif/sio.c:152:6: error: ‘struct sigaction’ has no member named ‘sa_restorer’ saio.sa_restorer = NULL; ^ Instead of trying to set all fields (which is deemed to fail since the structure could be extended even more by newer standards), better use memset to zero it out from the start. Samuel