Use #ifdef instead of #if for all feature tests.
Check that _MSC_VER is defined before using it.

diff --git a/scheduler/pthread.c b/scheduler/pthread.c
index 81c0c0a..72126c0 100644
--- a/scheduler/pthread.c
+++ b/scheduler/pthread.c
@@ -39,7 +39,7 @@
 #endif
 #include <string.h>
 #include <sys/types.h>
-#if HAVE_SYS_SOCKET_H
+#ifdef HAVE_SYS_SOCKET_H
 # include <sys/socket.h>
 #endif
 #ifdef HAVE_SYS_MMAN_H