Skip to content
Snippets Groups Projects
Commit cdb235b9 authored by Bruce Cowan's avatar Bruce Cowan :airplane:
Browse files

Revert "Explicitly ask for pthreads"

This reverts commit 8e87228c.

Turns out this doesn't work
parent 8e87228c
No related branches found
No related tags found
No related merge requests found
......@@ -10,7 +10,7 @@ libm = cc.find_library('m')
glib_dep = dependency('glib-2.0', version: '>= 2.16', required: false)
openmp_dep = dependency('openmp', required: false)
pthreads_dep = dependency('pthreads', required: false)
thread_dep = dependency('threads', required: false)
conf_data = configuration_data()
......
......@@ -34,6 +34,6 @@ if openmp_dep.found()
subdir('openmp')
endif
if pthreads_dep.found()
subdir('pthreads')
if thread_dep.found()
subdir('pthread')
endif
......@@ -3,4 +3,4 @@
# SPDX-License-Identifier: CC0-1.0
executable('thread-incr', 'thread-incr.c',
dependencies: [pthreads_dep, utils_dep])
dependencies: [thread_dep, utils_dep])
File moved
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment