Commit ba74890f authored by Luca Boccassi's avatar Luca Boccassi

Problem: cannot pick select for poller

Solution: fix acinclude.m4 snippet that checks if select is
available to stop it erroring out.
parent 3db69212
......@@ -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]
)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment