Commit bdddf208 authored by Hugo Beauzée-Luyssen's avatar Hugo Beauzée-Luyssen

configure.ac: Fix poll() presence check

poll isn't defined before vista, and we're building for windows XP
parent a41e3d70
......@@ -609,6 +609,7 @@ AC_CHECK_TYPES([struct pollfd],,,
#if HAVE_POLL
# include <poll.h>
#elif defined (_WIN32)
# define _WIN32_WINNT 0x502
# include <winsock2.h>
#endif
])
......
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