From aff5786ed30966dc0a00ffee3c56a9d1b5a08a7d Mon Sep 17 00:00:00 2001 From: Andreas Schneider Date: Thu, 2 Sep 2010 12:31:59 +0200 Subject: thread: Fixed detection of thread libraries on Windows. --- libssh/threads.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'libssh/threads.c') diff --git a/libssh/threads.c b/libssh/threads.c index 087b56c..76853f2 100644 --- a/libssh/threads.c +++ b/libssh/threads.c @@ -30,12 +30,13 @@ #include "libssh/priv.h" #include "libssh/threads.h" +#ifndef _WIN32 + #ifndef HAVE_PTHREAD #warning "You do not have any threading library installed. If the linked" #warning "application doesn't provide the threading callbacks, you're screwed" #endif -//#define HAVE_PTHREAD #ifdef HAVE_PTHREAD #include #include @@ -82,7 +83,8 @@ static struct ssh_threads_callbacks_struct ssh_pthread_user_callbacks= .thread_id=ssh_pthread_thread_id }; -#endif +#endif /* HAVE_PTHREAD */ +#endif /* _WIN32 */ static struct ssh_threads_callbacks_struct *user_callbacks; -- cgit