summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGiuseppe Bilotta <giuseppe.bilotta@gmail.com>2011-03-28 07:39:59 (GMT)
committerJunio C Hamano <gitster@pobox.com>2011-03-28 17:54:54 (GMT)
commitcea13a8d685802389fad5b1ffce3af38175a8a01 (patch)
treec139153cd3e3d44c9a75c6872f8333de23179ded
parent8cc299daf29c6726acada3ffad87c3fe2098aa02 (diff)
downloadgit-cea13a8d685802389fad5b1ffce3af38175a8a01.zip
git-cea13a8d685802389fad5b1ffce3af38175a8a01.tar.gz
git-cea13a8d685802389fad5b1ffce3af38175a8a01.tar.bz2
Improve test for pthreads flag
When compiling with CC=clang using Clang 1.1 as shipped by Debian unstable (package version 2.7-3), the -mt flag is sufficient to compile during the `configure` test. However, building git would then fail at link time complaining about missing symbols such as `pthread_key_create' and `pthread_create'. Work around this issue by adding pthread key creation to the pthreads configure test source. Signed-off-by: Giuseppe Bilotta <giuseppe.bilotta@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rw-r--r--configure.ac2
1 files changed, 2 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac
index dd07907..fafd815 100644
--- a/configure.ac
+++ b/configure.ac
@@ -895,7 +895,9 @@ AC_LANG_PROGRAM([[
#include <pthread.h>
]], [[
pthread_mutex_t test_mutex;
+ pthread_key_t test_key;
int retcode = 0;
+ retcode |= pthread_key_create(&test_key, (void *)0);
retcode |= pthread_mutex_init(&test_mutex,(void *)0);
retcode |= pthread_mutex_lock(&test_mutex);
retcode |= pthread_mutex_unlock(&test_mutex);