Problem: cannot pick select for poller

Solution: fix acinclude.m4 snippet that checks if select is
available to stop it erroring out.
This commit is contained in:
Luca Boccassi 2016-11-24 12:44:51 +00:00
parent 3db69212b7
commit ba74890f2f

View File

@ -898,7 +898,7 @@ FD_ZERO(&t_rfds);
FD_SET(0, &t_rfds);
tv.tv_sec = 5;
tv.tv_usec = 0;
select(1, &t_rfds, NULL, NULL, &tv);
select(1, &t_rfds, 0, 0, &tv);
]])],
[$1],[$2]
)