meson: spa/plugins: use pthread_lib instead of threads_dep

no need to refer to the same dependency with 2 different names
in the same codebase
This commit is contained in:
George Kiagiadakis 2019-01-29 17:37:55 +02:00 committed by Wim Taymans
parent 24eeea62e7
commit d08ec09dde
3 changed files with 3 additions and 3 deletions

View file

@ -3,6 +3,6 @@ videotestsrc_sources = ['videotestsrc.c', 'plugin.c']
videotestsrclib = shared_library('spa-videotestsrc',
videotestsrc_sources,
include_directories : [ spa_inc],
dependencies : threads_dep,
dependencies : pthread_lib,
install : true,
install_dir : '@0@/spa/videotestsrc'.format(get_option('libdir')))