summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2010-03-20 19:26:32 +1100
committerAndrew Tridgell <tridge@samba.org>2010-04-06 20:26:57 +1000
commitdb8115f687a5d51a7e487db5db9687c5aad1f4b3 (patch)
tree8c3f6df61704aa0486443fe96bd528d12510ac3b /lib
parentf2f8fc440e24cf92213b33f1f913ec9beda8d46e (diff)
downloadsamba-db8115f687a5d51a7e487db5db9687c5aad1f4b3.tar.gz
samba-db8115f687a5d51a7e487db5db9687c5aad1f4b3.tar.bz2
samba-db8115f687a5d51a7e487db5db9687c5aad1f4b3.zip
build: fixed check for pthread_create()
Diffstat (limited to 'lib')
-rw-r--r--lib/replace/wscript2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/replace/wscript b/lib/replace/wscript
index de71017b2c..ef6b4237cc 100644
--- a/lib/replace/wscript
+++ b/lib/replace/wscript
@@ -203,7 +203,7 @@ def configure(conf):
conf.CHECK_FUNCS_IN('poptGetContext', 'popt')
conf.CHECK_FUNCS_IN('res_search', 'resolv', checklibc=True)
conf.CHECK_FUNCS_IN('gettext', 'intl', checklibc=True)
- conf.CHECK_FUNCS_IN('pthread_create', 'pthread', checklibc=True)
+ conf.CHECK_FUNCS_IN('pthread_create', 'pthread', checklibc=True, header='pthread.h')
conf.CHECK_FUNCS_IN('crypt', 'crypt', checklibc=True)