diff options
author | Andreas Schneider <asn@samba.org> | 2019-09-23 17:40:13 +0200 |
---|---|---|
committer | Andreas Schneider <asn@cryptomilk.org> | 2019-09-25 15:39:40 +0000 |
commit | bd0cd8e13234d684da77a65f6fdaea2572625369 (patch) | |
tree | 182efd1621eeb8413a05b17eb7785986ace935ee /third_party | |
parent | 68d8a02ef57cce29e4ff3ef1b792adfc10d0b916 (diff) | |
download | samba-bd0cd8e13234d684da77a65f6fdaea2572625369.tar.gz |
third_party: Link uid_wrapper against pthread
uid_wrapper uses pthread_atfork() which is only provided by libpthread. │····················
So we need an explicit dependency.
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>
Diffstat (limited to 'third_party')
-rw-r--r-- | third_party/uid_wrapper/wscript | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/third_party/uid_wrapper/wscript b/third_party/uid_wrapper/wscript index df302ab7e3f..182ef88d3df 100644 --- a/third_party/uid_wrapper/wscript +++ b/third_party/uid_wrapper/wscript @@ -119,6 +119,6 @@ def build(bld): # breaks preloading! bld.SAMBA_LIBRARY('uid_wrapper', source='uid_wrapper.c', - deps='dl', + deps='dl pthread', install=False, realname='libuid-wrapper.so') |