From b62d6af68d8a29d0b8ac78af39371a966eb0e382 Mon Sep 17 00:00:00 2001 From: Joachim Schoeberl Date: Thu, 15 Sep 2011 17:38:06 +0000 Subject: [PATCH] missing pthread library in automake --- config.h.in | 3 +++ configure.ac | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/config.h.in b/config.h.in index 5f4c8caa..1b506b31 100644 --- a/config.h.in +++ b/config.h.in @@ -9,6 +9,9 @@ /* Define to 1 if you have the header file. */ #undef HAVE_INTTYPES_H +/* Define to 1 if you have the `pthread' library (-lpthread). */ +#undef HAVE_LIBPTHREAD + /* Define to 1 if you have the header file. */ #undef HAVE_LIMITS_H diff --git a/configure.ac b/configure.ac index d50af3a5..4aa64e29 100644 --- a/configure.ac +++ b/configure.ac @@ -141,7 +141,7 @@ AC_CHECK_FUNCS([floor]) AC_CHECK_FUNCS([matherr]) AC_CHECK_HEADERS([limits.h]) -# AC_CHECK_LIB(pthread, pthread_create) +AC_CHECK_LIB(pthread, pthread_create)