- Made pthreads usage conditional upon HAVE_LIBPTHREAD.
This commit is contained in:
Paul Beckingham
2011-01-03 19:34:00 -05:00
parent 6a7e741b02
commit 6b18a2842f
2 changed files with 14 additions and 0 deletions

View File

@@ -27,7 +27,11 @@
#ifndef INCLUDED_THREAD
#define INCLUDED_THREAD
#include <../auto.h>
#ifdef HAVE_LIBPTHREAD
#include <pthread.h>
#endif
class Thread
{