CVSROOT: /cvs
Module name: ports
Changes by: [email protected] 2022/10/28 16:40:26
Added files:
net/lftp/patches: patch-lib_sys_select_in_h
Log message:
net/lftp: fix build after introduction of waitid(2)
With the introduction of waitid(2), <sys/wait.h> now includes
<sys/siginfo.h>. gnulib wraps various system headers and those
wrappers include further system headers. <signal.h> must include
<sys/siginfo.h>, but gnulib ended up inverting this order, so
siginfo_t was not yet defined in <signal.h>.
Fix from gnulib upstream.