summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Schneider <asn@samba.org>2019-09-23 16:10:35 +0200
committerStefan Metzmacher <metze@samba.org>2019-10-16 12:15:52 +0000
commit93ab3efe7697669e9a551a5f8aec9bd4b27ff970 (patch)
treec0f1cd0429e9951c8d22947adabfc7f7350bcd11
parenta1309d360b9aef76c4dede9be6a0343874577a4e (diff)
downloadsamba-93ab3efe7697669e9a551a5f8aec9bd4b27ff970.tar.gz
pthreadpool: Only link pthreadpool against librt if we have to
This calls clock_gettime() which is available in glibc on Linux. If the wscript in libreplace detected that librt is needed for clock_gettime() we have to link against it. BUG: https://bugzilla.samba.org/show_bug.cgi?id=14140 Signed-off-by: Andreas Schneider <asn@samba.org> Signed-off-by: Isaac Boukris <iboukris@gmail.com> Pair-Programmed-With: Isaac Boukris <iboukris@gmail.com> Reviewed-by: Matthias Dieter Wallnöfer <mdw@samba.org> Reviewed-by: Alexander Bokovoy <ab@samba.org> (cherry picked from commit 4b28239d13b17e42eb5aa4b405342f46347f3de4)
-rw-r--r--lib/pthreadpool/wscript_build7
1 files changed, 6 insertions, 1 deletions
diff --git a/lib/pthreadpool/wscript_build b/lib/pthreadpool/wscript_build
index 57df25548b1..70aa7cbf041 100644
--- a/lib/pthreadpool/wscript_build
+++ b/lib/pthreadpool/wscript_build
@@ -1,12 +1,17 @@
#!/usr/bin/env python
if bld.env.WITH_PTHREADPOOL:
+ extra_libs=''
+
+ # Link to librt if needed for clock_gettime()
+ if bld.CONFIG_SET('HAVE_LIBRT'): extra_libs += ' rt'
+
bld.SAMBA_SUBSYSTEM('PTHREADPOOL',
source='''pthreadpool.c
pthreadpool_pipe.c
pthreadpool_tevent.c
''',
- deps='pthread rt replace tevent-util')
+ deps='pthread replace tevent-util' + extra_libs)
else:
bld.SAMBA_SUBSYSTEM('PTHREADPOOL',
source='''pthreadpool_sync.c