mirror of
https://github.com/zeromq/libzmq.git
synced 2024-12-13 10:52:56 +01:00
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:
parent
3db69212b7
commit
ba74890f2f
@ -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]
|
||||
)
|
||||
|
Loading…
Reference in New Issue
Block a user