Check for pthreads

This commit is contained in:
Behdad Esfahbod 2012-10-02 14:55:32 -04:00
parent 10a8162ddd
commit 66efe89648
2 changed files with 12 additions and 0 deletions

View File

@ -100,6 +100,13 @@ esac
AC_MSG_RESULT([$hb_os_win32])
AM_CONDITIONAL(OS_WIN32, test "$hb_os_win32" = "yes")
have_pthread=false
AX_PTHREAD([have_pthread=true])
if $have_pthread; then
AC_DEFINE(HAVE_PTHREAD, 1, [Have POSIX threads])
fi
AM_CONDITIONAL(HAVE_PTHREAD, $have_pthread)
dnl ==========================================================================
have_ot=true

View File

@ -100,6 +100,11 @@ HBHEADERS += \
$(NULL)
endif
if HAVE_PTHREAD
HBCFLAGS += $(PTHREAD_CFLAGS)
HBLIBS += $(PTHREAD_LIBS)
endif
if HAVE_GLIB
HBCFLAGS += $(GLIB_CFLAGS)
HBLIBS += $(GLIB_LIBS)