Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
M
mpd
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Иван Мажукин
mpd
Commits
98b29f6d
Commit
98b29f6d
authored
Mar 14, 2019
by
Max Kellermann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
meson.build: remove the libwinpthread-1.dll dependency on Windows
Closes
https://github.com/MusicPlayerDaemon/MPD/issues/507
parent
59fdfd25
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
1 deletion
+10
-1
NEWS
NEWS
+2
-0
meson.build
src/thread/meson.build
+8
-1
No files found.
NEWS
View file @
98b29f6d
...
@@ -7,6 +7,8 @@ ver 0.21.6 (not yet released)
...
@@ -7,6 +7,8 @@ ver 0.21.6 (not yet released)
* playlist
* playlist
- flac: fix use-after-free bug
- flac: fix use-after-free bug
* support abstract sockets on Linux
* support abstract sockets on Linux
* Windows
- remove the unused libwinpthread-1.dll dependency
ver 0.21.5 (2019/02/22)
ver 0.21.5 (2019/02/22)
* protocol
* protocol
...
...
src/thread/meson.build
View file @
98b29f6d
threads_dep = dependency('threads')
if is_windows
# avoid the unused libwinpthread-1.dll dependency on Windows; MPD
# doesn't use the pthread API on Windows, but this is what Meson
# unhelpfully detects for us
threads_dep = []
else
threads_dep = dependency('threads')
endif
conf.set('HAVE_PTHREAD_SETNAME_NP', compiler.has_function('pthread_setname_np', dependencies: threads_dep))
conf.set('HAVE_PTHREAD_SETNAME_NP', compiler.has_function('pthread_setname_np', dependencies: threads_dep))
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment