diff options
author | Max Kellermann <max@duempel.org> | 2013-01-10 09:16:22 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2013-01-10 10:03:18 +0100 |
commit | 483ba5ea1ccebd4741fbcc5d92648ac6854c60fe (patch) | |
tree | f797f807c2f0b4ea0e48b82fdd92c51d980f509b /Makefile.am | |
parent | 18076ac9b766485efc45931e62a164e5cc1a8542 (diff) | |
download | mpd-483ba5ea1ccebd4741fbcc5d92648ac6854c60fe.tar.gz mpd-483ba5ea1ccebd4741fbcc5d92648ac6854c60fe.tar.xz mpd-483ba5ea1ccebd4741fbcc5d92648ac6854c60fe.zip |
thread/GLibMutex: new Mutex implementation
Switch WIN32 to this implementation to be able to use condition
variables, which is impossible with CriticalSection.
Diffstat (limited to '')
-rw-r--r-- | Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am index c1b76fa4d..23f1a711c 100644 --- a/Makefile.am +++ b/Makefile.am @@ -163,7 +163,7 @@ src_mpd_SOURCES = \ $(MIXER_API_SRC) \ src/thread/Mutex.hxx \ src/thread/PosixMutex.hxx \ - src/thread/CriticalSection.hxx \ + src/thread/GLibMutex.hxx \ src/glib_socket.h \ src/clock.c src/clock.h \ src/notify.c \ |